| | |
| | | /** |
| | | * 是否上料(是、否) |
| | | */ |
| | | @TableField("state") |
| | | private String state; |
| | | @TableField("status") |
| | | private String status; |
| | | |
| | | @TableField("bar_code") |
| | | private String barCode; |
| | | |
| | | @TableField("quantity") |
| | | private Integer quantity; |
| | | |
| | | @TableField("residue_quantity") |
| | | private Integer residueQuantity; |
| | | |
| | | @TableField("unit") |
| | | private String unit; |
| | | |
| | | @TableField("batch") |
| | | private String batch; |
| | | |
| | | /** |
| | | * 预留字段1 |
| | |
| | | @TableField(value = "update_time", fill = FieldFill.UPDATE) |
| | | private Date updateTime; |
| | | |
| | | |
| | | public Integer getResidueQuantity() { |
| | | return residueQuantity; |
| | | } |
| | | |
| | | public void setResidueQuantity(Integer residueQuantity) { |
| | | this.residueQuantity = residueQuantity; |
| | | } |
| | | |
| | | public Integer getQuantity() { |
| | | return quantity; |
| | | } |
| | | |
| | | public void setQuantity(Integer quantity) { |
| | | this.quantity = quantity; |
| | | } |
| | | |
| | | public String getUnit() { |
| | | return unit; |
| | | } |
| | | |
| | | public void setUnit(String unit) { |
| | | this.unit = unit; |
| | | } |
| | | |
| | | public String getBatch() { |
| | | return batch; |
| | | } |
| | | |
| | | public void setBatch(String batch) { |
| | | this.batch = batch; |
| | | } |
| | | |
| | | public String getLoadingCode() { |
| | | return loadingCode; |
| | |
| | | this.locationCode = locationCode; |
| | | } |
| | | |
| | | public String getState() { |
| | | return state; |
| | | public String getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setState(String state) { |
| | | this.state = state; |
| | | public void setStatus(String status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getSpareField1() { |
| | |
| | | ", workOrderNo=" + workOrderNo + |
| | | ", productionLine=" + productionLine + |
| | | ", locationCode=" + locationCode + |
| | | ", state=" + state + |
| | | ", status=" + status + |
| | | ", spareField1=" + spareField1 + |
| | | ", spareField2=" + spareField2 + |
| | | ", createUser=" + createUser + |