|
|
@ -10,7 +10,6 @@ import com.gaotao.modules.app.entity.WorkCenter; |
|
|
import com.gaotao.modules.base.dao.BaseMapper; |
|
|
import com.gaotao.modules.base.dao.BaseMapper; |
|
|
import com.gaotao.modules.base.entity.*; |
|
|
import com.gaotao.modules.base.entity.*; |
|
|
import com.gaotao.modules.base.service.BaseService; |
|
|
import com.gaotao.modules.base.service.BaseService; |
|
|
import com.gaotao.modules.finishedProduct.vo.CRollinfoVo; |
|
|
|
|
|
import com.gaotao.modules.pda.utils.ResponseData; |
|
|
import com.gaotao.modules.pda.utils.ResponseData; |
|
|
import com.gaotao.modules.schedule.mapper.ProcedureMapper; |
|
|
import com.gaotao.modules.schedule.mapper.ProcedureMapper; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -783,13 +782,17 @@ public class BaseServiceImpl implements BaseService { |
|
|
} |
|
|
} |
|
|
//----------查询-物料编码-------------------------- |
|
|
//----------查询-物料编码-------------------------- |
|
|
@Override |
|
|
@Override |
|
|
public PageUtils searchPartNoData(PartData indata){ |
|
|
|
|
|
IPage<PartData> resultList = this.baseMapper.searchPartNoData( |
|
|
|
|
|
|
|
|
public List<PartData> searchPartNoData(PartData indata){ |
|
|
|
|
|
List<PartData> result = baseMapper.searchPartNoData(indata); |
|
|
|
|
|
return result; |
|
|
|
|
|
} |
|
|
|
|
|
@Override |
|
|
|
|
|
public PageUtils searchPartNoDataWithPage(PartData indata){ |
|
|
|
|
|
IPage<PartData> resultList = this.baseMapper.searchPartNoDataWithPage( |
|
|
new Page<PartData>(indata.getPage(), indata.getLimit()),indata); |
|
|
new Page<PartData>(indata.getPage(), indata.getLimit()),indata); |
|
|
return new PageUtils(resultList); |
|
|
return new PageUtils(resultList); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------停机原因-------------------------- |
|
|
//----------停机原因-------------------------- |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
|