|  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.*; | 
 |  |  |  | 
 |  |  | import java.text.SimpleDateFormat; | 
 |  |  | import java.util.Date; | 
 |  |  | import java.util.*; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.vincent.rsf.server.manager.service.CompanysService; | 
 |  |  | import com.vincent.rsf.server.system.constant.DictTypeCode; | 
 |  |  | import com.vincent.rsf.server.system.entity.DictData; | 
 |  |  | import com.vincent.rsf.server.system.service.DictDataService; | 
 |  |  | import lombok.experimental.Accessors; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  | import java.text.SimpleDateFormat; | 
 |  |  | 
 |  |  | import com.vincent.rsf.server.system.entity.User; | 
 |  |  | import java.io.Serializable; | 
 |  |  | import java.util.Date; | 
 |  |  | import java.util.Map; | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | @Accessors(chain = true) | 
 |  |  | 
 |  |  |     @ApiModelProperty(value = "扩展字段唯一标识") | 
 |  |  |     private String fieldsIndex; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("客户订单号") | 
 |  |  |     private String platOrderCode; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("工单号") | 
 |  |  |     private String platWorkCode; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("项目号") | 
 |  |  |     private String projectCode; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 物料名称 | 
 |  |  |      */ | 
 |  |  | 
 |  |  |      * 供应商标识 | 
 |  |  |      */ | 
 |  |  |     @ApiModelProperty(value= "供应商标识") | 
 |  |  |     private String splrId; | 
 |  |  |     private Long splrId; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 收货重量 | 
 |  |  | 
 |  |  |      * 是否删除 1: 是  0: 否   | 
 |  |  |      */ | 
 |  |  |     @ApiModelProperty(value= "是否删除 1: 是  0: 否  ") | 
 |  |  |     @TableLogic | 
 |  |  |     private Integer deleted; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  | 
 |  |  |     @ApiModelProperty(value= "修改人员") | 
 |  |  |     private Long updateBy; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("是否合格") | 
 |  |  |     private Short flagNorm; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("质检数量") | 
 |  |  |     private Double isptQty; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 修改时间 | 
 |  |  |      */ | 
 |  |  | 
 |  |  |  | 
 |  |  |     public WarehouseAreasItem() {} | 
 |  |  |  | 
 |  |  |     public WarehouseAreasItem(Long areaId,String areaName,Long matnrId,String matnrName,String matnrCode,String trackCode,Double anfme,String batch,String unit,String stockUnit,String brand,Long shipperId,String splrId,Double weight,String prodTime,String splrBtch,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { | 
 |  |  |     public WarehouseAreasItem(Long areaId,String areaName,Long matnrId,String matnrName,String matnrCode,String trackCode,Double anfme,String batch,String unit,String stockUnit,String brand,Long shipperId,Long splrId,Double weight,String prodTime,String splrBtch,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { | 
 |  |  |         this.areaId = areaId; | 
 |  |  |         this.areaName = areaName; | 
 |  |  |         this.matnrId = matnrId; | 
 |  |  | 
 |  |  |         return null; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getIsptResult$(){ | 
 |  |  |         if (Cools.isEmpty(this.isptResult)){ | 
 |  |  |             return null; | 
 |  |  |         } | 
 |  |  |         DictDataService dictDataService = SpringUtils.getBean(DictDataService.class); | 
 |  |  |         DictData dictData = dictDataService.getOne(new LambdaQueryWrapper<DictData>() | 
 |  |  |                 .eq(DictData::getDictTypeCode, DictTypeCode.DICT_INSPECT_RESULT) | 
 |  |  |                 .eq(DictData::getValue, this.isptResult)); | 
 |  |  |         if (Objects.isNull(dictData)) { | 
 |  |  |             return null; | 
 |  |  |         } | 
 |  |  |         return dictData.getLabel(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getUpdateTime$(){ | 
 |  |  |         if (Cools.isEmpty(this.updateTime)){ | 
 |  |  |             return ""; |