| | |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value= "ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 工作号 |
| | | */ |
| | | @ApiModelProperty(value= "工作号") |
| | | @TableId(value = "wrk_no", type = IdType.INPUT) |
| | | @TableField("wrk_no") |
| | | private Long wrkNo; |
| | | |
| | |
| | | * 任务类型 0: 未知 1: 开门 2: 关门 3: 入硫化罐 4: 入冷却槽 5: 穿梭车进冷却槽 6: 穿梭车离开冷却槽 7: 出冷却槽 |
| | | */ |
| | | @ApiModelProperty(value= "任务类型 0: 未知 1: 开门 2: 关门 3: 入硫化罐 4: 入冷却槽 5: 穿梭车进冷却槽 6: 穿梭车离开冷却槽 7: 出冷却槽 ") |
| | | @TableId(value = "io_type", type = IdType.INPUT) |
| | | @TableField("io_type") |
| | | private Integer ioType; |
| | | |
| | |
| | | this.rgvEndId = rgvEndId; |
| | | } |
| | | |
| | | public WrkMastExecuteLog(WrkMastExecute wrkMastExecute) { |
| | | this.wrkNo = wrkMastExecute.getWrkNo(); |
| | | this.enterStaNo = wrkMastExecute.getEnterStaNo(); |
| | | this.outStaNo = wrkMastExecute.getOutStaNo(); |
| | | this.jarEnterStaNo = wrkMastExecute.getJarEnterStaNo(); |
| | | this.jarOutStaNo = wrkMastExecute.getJarOutStaNo(); |
| | | this.jarId = wrkMastExecute.getJarId(); |
| | | this.jarRegin = wrkMastExecute.getJarRegin(); |
| | | this.status = wrkMastExecute.getStatus(); |
| | | this.steId = wrkMastExecute.getSteId(); |
| | | this.rgvId = wrkMastExecute.getRgvId(); |
| | | this.ioTime = wrkMastExecute.getIoTime(); |
| | | this.modiTime = wrkMastExecute.getModiTime(); |
| | | this.appeTime = wrkMastExecute.getAppeTime(); |
| | | this.wrkType = wrkMastExecute.getWrkType(); |
| | | this.wrkSts = wrkMastExecute.getWrkSts(); |
| | | this.ioType = wrkMastExecute.getIoType(); |
| | | this.type = wrkMastExecute.getType(); |
| | | this.rgvEndId = wrkMastExecute.getRgvEndId(); |
| | | } |
| | | |
| | | // WrkMastExecuteLog wrkMastExecuteLog = new WrkMastExecuteLog( |
| | | // null, // 工作号[非空] |
| | | // null, // 入库源站点[非空] |