parent
77fe02d798
commit
5593e77687
8 changed files with 214 additions and 20 deletions
@ -1,17 +1,136 @@ |
||||
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; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 分批准备数据 视图实体类 |
||||
* 任务接收数据返回 视图实体类 |
||||
* |
||||
* @author litao |
||||
*/ |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@Data |
||||
public class WorkPlanLoadVO extends WorkPlan { |
||||
public class WorkPlanLoadVO { |
||||
|
||||
@Schema(description = "下级B号") |
||||
private String nextRoam; |
||||
|
||||
@Schema(description = "生产单号") |
||||
private String yoCode; |
||||
|
||||
@Schema(description = "计划单号") |
||||
private String ypCode; |
||||
|
||||
@Schema(description = "零件号") |
||||
private String partCode; |
||||
|
||||
@Schema(description = "产品型号") |
||||
private String productType; |
||||
|
||||
@Schema(description = "名称") |
||||
private String partName; |
||||
|
||||
@Schema(description = "镀种") |
||||
private String plate; |
||||
|
||||
@Schema(description = "生产标识") |
||||
private String prodIdent; |
||||
|
||||
@Schema(description = "使用部门") |
||||
private String useDept; |
||||
|
||||
@Schema(description = "面积(㎡)") |
||||
private Double poArea; |
||||
|
||||
@Schema(description = "需求交期") |
||||
private Date demandDate; |
||||
|
||||
@Schema(description = "计划员") |
||||
private String planUser; |
||||
|
||||
@Schema(description = "计划下达时间") |
||||
private Date releaseDate; |
||||
|
||||
@Schema(description = "一级工艺线路") |
||||
private String primaryCraft; |
||||
|
||||
@Schema(description = "路线卡号") |
||||
private String cardNo; |
||||
|
||||
@Schema(description = "批次号") |
||||
private String batchNo; |
||||
|
||||
@Schema(description = "订单编号") |
||||
private String woCode; |
||||
|
||||
@Schema(description = "加工数量") |
||||
private Double makeQty; |
||||
|
||||
@Schema(description = "未报工数量") |
||||
private Double notWorkQty; |
||||
|
||||
@Schema(description = "已报工数量") |
||||
private Double workQty; |
||||
|
||||
@Schema(description = "报废数量") |
||||
private Double scrapQty; |
||||
|
||||
@Schema(description = "计划开始日期") |
||||
private Date planStartTime; |
||||
|
||||
@Schema(description = "计划完工日期") |
||||
private Date planEndTime; |
||||
|
||||
@Schema(description = "已入库数量") |
||||
private Double inventoryQty; |
||||
|
||||
@Schema(description = "已入库数量") |
||||
private Double notInQty; |
||||
|
||||
public Integer runStatus; |
||||
|
||||
@Schema(description = "运行状态") |
||||
public String runStatusTitle; |
||||
|
||||
@Schema(description = "工序状态") |
||||
public Short status; |
||||
|
||||
public Integer priority; |
||||
|
||||
@Schema(description = "优先级") |
||||
public String priorityTitle; |
||||
|
||||
public Integer pickingStatus; |
||||
|
||||
@Schema(description = "领料状态") |
||||
public String pickingStatusTitle; |
||||
|
||||
@Schema(description = "是否绑定挂次号") |
||||
public Integer isBing; |
||||
|
||||
@Schema(description = "当前工序") |
||||
public Long currentWpId; |
||||
|
||||
@Schema(description = "当前工序ID") |
||||
public Long wpId; |
||||
|
||||
@Schema(description = "当前工序名称") |
||||
public String currentWpTitle; |
||||
|
||||
@Schema(description = "当前工序加工班组") |
||||
public String currentMakeTeam; |
||||
|
||||
@Schema(description = "上序名称") |
||||
public String frontWpTitle; |
||||
|
||||
@Schema(description = "上序加工班组") |
||||
public String frontMakeTeam; |
||||
|
||||
@Schema(description = "下序名称") |
||||
public String nextWpTitle; |
||||
|
||||
@Schema(description = "下序加工班组") |
||||
public String nextMakeTeam; |
||||
|
||||
} |
||||
|
||||
Loading…
Reference in new issue