| | |
| | | package com.zy.asrs.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.zy.asrs.domain.vo.WrkTaskCountVo; |
| | | import com.zy.asrs.entity.WrkMast; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | WrkMast selectByWorkNo(Integer workNo); |
| | | |
| | | int updateWrkStsByWrkNoAndCurrentWrkSts(Integer wrkNo, Long wrkSts, Long currentWrkSts); |
| | | |
| | | int deleteByWrkNoAndCurrentWrkSts(Integer wrkNo, Long currentWrkSts); |
| | | |
| | | int deleteByWrkNoAndMkIn(Integer wrkNo, List<String> mks); |
| | | |
| | | List<WrkTaskCountVo> selectCrnTaskCountList(); |
| | | |
| | | List<WrkTaskCountVo> selectDualCrnTaskCountList(); |
| | | |
| | | } |