| | |
| | | package com.zy.asrs.wms.asrs.mapper; |
| | | |
| | | import com.zy.asrs.wms.asrs.entity.TaskDetl; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface TaskDetlMapper extends BaseMapper<TaskDetl> { |
| | | |
| | | List<Long> getTaskIdsByDetlId(Long detlId); |
| | | |
| | | } |
| | | package com.zy.asrs.wms.asrs.mapper;
|
| | |
|
| | | import com.zy.asrs.wms.asrs.entity.TaskDetl;
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import org.apache.ibatis.annotations.Mapper;
|
| | | import org.springframework.stereotype.Repository;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | @Mapper
|
| | | @Repository
|
| | | public interface TaskDetlMapper extends BaseMapper<TaskDetl> {
|
| | |
|
| | | List<Long> getTaskIdsByDetlId(Long detlId);
|
| | |
|
| | | }
|