|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.glxp.api.service.inv;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.glxp.api.dao.inv.DeviceInspectTaskMapper;
|
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectPlanDelectEntity;
|
|
|
|
@ -19,13 +20,16 @@ public class DeviceInspectTaskDetailService extends ServiceImpl<DeviceInspectTas
|
|
|
|
|
@Resource
|
|
|
|
|
private DeviceInspectTaskDetailMapper deviceInspectTaskDetailMapper;
|
|
|
|
|
|
|
|
|
|
public Boolean addDeviceInspectTaskDelect(DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntity){
|
|
|
|
|
public Boolean addDeviceInspectTaskDelect(DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntity) {
|
|
|
|
|
deviceInspectTaskDetailEntity.setUpdateTime(new Date());
|
|
|
|
|
if (deviceInspectTaskDetailEntity.getId() == null) {
|
|
|
|
|
deviceInspectTaskDetailEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
}
|
|
|
|
|
deviceInspectTaskDetailMapper.insert(deviceInspectTaskDetailEntity);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean addDeviceInspectTaskDelectList(List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList){
|
|
|
|
|
public Boolean addDeviceInspectTaskDelectList(List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList) {
|
|
|
|
|
deviceInspectTaskDetailMapper.insertBatch(deviceInspectTaskDetailEntityList);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
@ -34,27 +38,26 @@ public class DeviceInspectTaskDetailService extends ServiceImpl<DeviceInspectTas
|
|
|
|
|
public List<DeviceInspectTaskDetailEntity> selectDeviceInspectTakeDetail(DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntity) {
|
|
|
|
|
|
|
|
|
|
QueryWrapper<DeviceInspectTaskDetailEntity> ew = new QueryWrapper<>();
|
|
|
|
|
if(deviceInspectTaskDetailEntity.getProjectCode() != null){
|
|
|
|
|
ew.eq("projectCode",deviceInspectTaskDetailEntity.getProjectCode());
|
|
|
|
|
if (deviceInspectTaskDetailEntity.getProjectCode() != null) {
|
|
|
|
|
ew.eq("projectCode", deviceInspectTaskDetailEntity.getProjectCode());
|
|
|
|
|
}
|
|
|
|
|
if(deviceInspectTaskDetailEntity.getId() != null){
|
|
|
|
|
ew.eq("id",deviceInspectTaskDetailEntity.getId());
|
|
|
|
|
if (deviceInspectTaskDetailEntity.getId() != null) {
|
|
|
|
|
ew.eq("id", deviceInspectTaskDetailEntity.getId());
|
|
|
|
|
}
|
|
|
|
|
if(deviceInspectTaskDetailEntity.getTaskOrderIdFk() != null){
|
|
|
|
|
ew.eq("taskOrderIdFk",deviceInspectTaskDetailEntity.getTaskOrderIdFk());
|
|
|
|
|
if (deviceInspectTaskDetailEntity.getTaskOrderIdFk() != null) {
|
|
|
|
|
ew.eq("taskOrderIdFk", deviceInspectTaskDetailEntity.getTaskOrderIdFk());
|
|
|
|
|
}
|
|
|
|
|
if(deviceInspectTaskDetailEntity.getStatus() != null){
|
|
|
|
|
ew.like("status",deviceInspectTaskDetailEntity.getStatus());
|
|
|
|
|
if (deviceInspectTaskDetailEntity.getStatus() != null) {
|
|
|
|
|
ew.like("status", deviceInspectTaskDetailEntity.getStatus());
|
|
|
|
|
}
|
|
|
|
|
ew.select("*, ( SELECT `employeeName` FROM auth_user WHERE id = device_inspect_task_detail.inspectUser ) inspectName");
|
|
|
|
|
List<DeviceInspectTaskDetailEntity> deviceInspectPlanDelectEntities=deviceInspectTaskDetailMapper.selectList(ew);
|
|
|
|
|
List<DeviceInspectTaskDetailEntity> deviceInspectPlanDelectEntities = deviceInspectTaskDetailMapper.selectList(ew);
|
|
|
|
|
return deviceInspectPlanDelectEntities;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean uploadDeviceInspecTakeDetail(DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntityList){
|
|
|
|
|
return deviceInspectTaskDetailMapper.updateById(deviceInspectTaskDetailEntityList) > 0 ? true : false;
|
|
|
|
|
public Boolean uploadDeviceInspecTakeDetail(DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntityList) {
|
|
|
|
|
return deviceInspectTaskDetailMapper.updateById(deviceInspectTaskDetailEntityList) > 0 ? true : false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|