parent
1dd67fc7c9
commit
03a676830c
6 changed files with 82 additions and 26 deletions
@ -0,0 +1,49 @@ |
||||
package org.springblade.desk.produce.pojo.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.desk.produce.pojo.entity.WorkPlan; |
||||
|
||||
/** |
||||
* 镀前镀后 视图实体类 |
||||
* |
||||
* @author litao |
||||
*/ |
||||
@Data |
||||
public class BeforePlatInVO { |
||||
|
||||
@Schema(description = "作业计划id") |
||||
private Long wpId; |
||||
|
||||
@Schema(description = "车间订单号") |
||||
private String woCode; |
||||
|
||||
@Schema(description = "批次号") |
||||
private String batchNo; |
||||
|
||||
@Schema(description = "流程卡号") |
||||
private String cardNo; |
||||
|
||||
@Schema(description = "入库班组/供应商") |
||||
private String teamCode; |
||||
|
||||
@Schema(description = "入库工序号") |
||||
private String processCode; |
||||
|
||||
@Schema(description = "入库工序名称") |
||||
private String processName; |
||||
|
||||
@Schema(description = "下序号") |
||||
private String nextProcessCode; |
||||
|
||||
@Schema(description = "下序名称") |
||||
private String nextProcessName; |
||||
|
||||
@Schema(description = "下序班组/供应商") |
||||
private String nextTeamCode; |
||||
|
||||
@Schema(description = "入库数量") |
||||
private String inQuantity; |
||||
|
||||
} |
||||
Loading…
Reference in new issue