parent
ff5aa3a018
commit
9db0a7f082
9 changed files with 241 additions and 1 deletions
@ -0,0 +1,25 @@ |
||||
package org.springblade.erpdata.pojo.dto; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import org.springblade.core.mp.support.Query; |
||||
|
||||
/** |
||||
* 返工订单 数据传输对象实体类 |
||||
* @author litao |
||||
*/ |
||||
@Data |
||||
public class ReworkProcessDTO { |
||||
|
||||
@Schema(description = "返工单号") |
||||
private String reworkCode; |
||||
|
||||
@Schema(description = "物料号") |
||||
private String partCode; |
||||
|
||||
@Schema(description = "批次") |
||||
private String batchNo; |
||||
|
||||
private Query query; |
||||
|
||||
} |
||||
@ -0,0 +1,146 @@ |
||||
package org.springblade.erpdata.pojo.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 返工订单 视图实体类 |
||||
* |
||||
* @author litao |
||||
*/ |
||||
@Data |
||||
public class ReworkProcessVO { |
||||
|
||||
/** |
||||
* 返修单号 |
||||
*/ |
||||
@Schema(description = "返修单号") |
||||
private String redono; |
||||
/** |
||||
* 路线编号 |
||||
*/ |
||||
@Schema(description = "路线编号") |
||||
private Integer seqno; |
||||
/** |
||||
* 处理单位 |
||||
*/ |
||||
@Schema(description = "处理单位") |
||||
private String seqdept; |
||||
/** |
||||
* 物料号 |
||||
*/ |
||||
@Schema(description = "物料号") |
||||
private String prtno; |
||||
/** |
||||
* 执行状态 |
||||
*/ |
||||
@Schema(description = "执行状态") |
||||
private Short excstatus; |
||||
/** |
||||
* 加工数量 |
||||
*/ |
||||
@Schema(description = "加工数量") |
||||
private Double amount; |
||||
/** |
||||
* 需求日期 |
||||
*/ |
||||
@Schema(description = "需求日期") |
||||
private String reqdate; |
||||
/** |
||||
* 需求数量 |
||||
*/ |
||||
@Schema(description = "需求数量") |
||||
private String reqqty; |
||||
/** |
||||
* 接收日期 |
||||
*/ |
||||
@Schema(description = "接收日期") |
||||
private String recdate; |
||||
/** |
||||
* 接收人 |
||||
*/ |
||||
@Schema(description = "接收人") |
||||
private String recman; |
||||
/** |
||||
* 接收数量 |
||||
*/ |
||||
@Schema(description = "接收数量") |
||||
private String recqty; |
||||
/** |
||||
* 完成时间 |
||||
*/ |
||||
@Schema(description = "完成时间") |
||||
private String enddat; |
||||
/** |
||||
* 完成人 |
||||
*/ |
||||
@Schema(description = "完成人") |
||||
private String endman; |
||||
/** |
||||
* 完成数量 |
||||
*/ |
||||
@Schema(description = "完成数量") |
||||
private String endqty; |
||||
/** |
||||
* 批次号 |
||||
*/ |
||||
@Schema(description = "批次号") |
||||
private String splcode; |
||||
/** |
||||
* 备注 |
||||
*/ |
||||
@Schema(description = "备注") |
||||
private String remark; |
||||
/** |
||||
* 交接日期 |
||||
*/ |
||||
@Schema(description = "交接日期") |
||||
private String hrecdate; |
||||
/** |
||||
* 报废数量 |
||||
*/ |
||||
@Schema(description = "报废数量") |
||||
private Integer bfqty; |
||||
|
||||
/** |
||||
* 发生单位 |
||||
*/ |
||||
@Schema(description = "发生单位") |
||||
private String usedept; |
||||
/** |
||||
* 处理意见 |
||||
*/ |
||||
@Schema(description = "处理意见") |
||||
private String detail; |
||||
/** |
||||
* 生产标识 |
||||
*/ |
||||
@Schema(description = "生产标识") |
||||
private String prtlotno; |
||||
/** |
||||
* 工艺路线 |
||||
*/ |
||||
@Schema(description = "工艺路线") |
||||
private String deptcode; |
||||
/** |
||||
* 是否无工艺 |
||||
*/ |
||||
// @Schema(description = "是否无工艺")
|
||||
// private String reworkgyFlag;
|
||||
/** |
||||
* 开单车间订单号 |
||||
*/ |
||||
@Schema(description = "开单车间订单号") |
||||
private String sono; |
||||
/** |
||||
* 镀种 |
||||
*/ |
||||
// @Schema(description = "镀种")
|
||||
// private String plate;
|
||||
/** |
||||
* 工艺责任人 |
||||
*/ |
||||
// @Schema(description = "工艺责任人")
|
||||
// private String gyname;
|
||||
|
||||
} |
||||
Loading…
Reference in new issue