| | |
| | | import com.core.common.SpringUtils; |
| | | import com.zy.asrs.service.BasBoxTypeService; |
| | | import com.zy.asrs.service.LocMastService; |
| | | import com.zy.asrs.service.MatService; |
| | | import com.zy.common.utils.Synchro; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | |
| | | @ApiModelProperty(value= "接头") |
| | | private String specs; |
| | | |
| | | @ApiModelProperty(value= "箱号") |
| | | // @ExcelProperty("箱号") |
| | | @ApiModelProperty(value= "批次") |
| | | // @ExcelProperty("批次") |
| | | private String batch; |
| | | |
| | | @ApiModelProperty(value= "单据编号") |
| | |
| | | @TableField("order_no") |
| | | private String orderNo; |
| | | |
| | | @ApiModelProperty(value= "卷号") |
| | | @ApiModelProperty(value= "MES工作号") |
| | | private String model; |
| | | |
| | | @ApiModelProperty(value= "颜色") |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime); |
| | | } |
| | | |
| | | public long getStoreDate(){ |
| | | try{ |
| | | long timeNow = new Date().getTime(); |
| | | long timeCreate = this.appeTime.getTime(); |
| | | |
| | | return (timeNow - timeCreate) /24/60/60/1000; |
| | | }catch (Exception e){ |
| | | return 0; |
| | | } |
| | | } |
| | | |
| | | public String getStoreMax$(){ |
| | | MatService matService = SpringUtils.getBean(MatService.class); |
| | | Mat mat = matService.selectByMatnr(this.matnr); |
| | | if (!Cools.isEmpty(mat)){ |
| | | return String.valueOf(mat.getStoreMin()); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | public String getStoreMin$(){ |
| | | MatService matService = SpringUtils.getBean(MatService.class); |
| | | Mat mat = matService.selectByMatnr(this.matnr); |
| | | if (!Cools.isEmpty(mat)){ |
| | | return String.valueOf(mat.getStoreMax()); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | public void sync(Object source) { |
| | | Synchro.Copy(source, this); |
| | | } |