| | |
| | | import com.doumee.dao.business.WorktypeMapper; |
| | | import com.doumee.dao.business.dto.WorkTypeQueryDTO; |
| | | import com.doumee.dao.business.dto.WorktypeImport; |
| | | import com.doumee.dao.business.model.DispatchUnit; |
| | | import com.doumee.dao.business.model.Worktype; |
| | | import com.doumee.service.business.WorktypeService; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | |
| | | @Override |
| | | public List<Worktype> findList(Worktype worktype) { |
| | | worktype.setIsdeleted(Constants.ZERO); |
| | | worktype.setStatus(Constants.ZERO); |
| | | QueryWrapper<Worktype> wrapper = new QueryWrapper<>(worktype); |
| | | return worktypeMapper.selectList(wrapper); |
| | | } |