|
@@ -1,15 +1,21 @@
|
|
|
package org.dromara.productionManagement.domain.vo;
|
|
|
|
|
|
+import io.github.linpeilie.annotations.AutoMapper;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
|
|
+import org.dromara.productionManagement.domain.ProductionPlan;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
@Data
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
+@AutoMapper(target = ProductionPlan.class)
|
|
|
public class ProductionPlanVo extends BaseEntity {
|
|
|
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
@@ -155,47 +161,47 @@ public class ProductionPlanVo extends BaseEntity {
|
|
|
/**
|
|
|
* 烧花,0否,1是
|
|
|
*/
|
|
|
- private int isBurnFlowers;
|
|
|
+ private int isBurnFlowers = 0;
|
|
|
|
|
|
/**
|
|
|
* 定位,0否,1是
|
|
|
*/
|
|
|
- private int isLocation;
|
|
|
+ private int isLocation = 0;
|
|
|
|
|
|
/**
|
|
|
* 快返,0否,1是
|
|
|
*/
|
|
|
- private int isQuickReturn;
|
|
|
+ private int isQuickReturn = 0;
|
|
|
|
|
|
/**
|
|
|
* 作废0否,1是
|
|
|
*/
|
|
|
- private int isToVoid;
|
|
|
+ private int isToVoid = 0;
|
|
|
|
|
|
/**
|
|
|
* 复色,0否,1是
|
|
|
*/
|
|
|
- private int isMulticolor;
|
|
|
+ private int isMulticolor = 0;
|
|
|
|
|
|
/**
|
|
|
* 首单,0否,1是
|
|
|
*/
|
|
|
- private int isFirstOrder;
|
|
|
+ private int isFirstOrder = 0;
|
|
|
|
|
|
/**
|
|
|
* 首次加工,0否,1是
|
|
|
*/
|
|
|
- private int isFirstProcessing;
|
|
|
+ private int isFirstProcessing = 0;
|
|
|
|
|
|
/**
|
|
|
* 紧急,0否,1是
|
|
|
*/
|
|
|
- private int isUrgent;
|
|
|
+ private int isUrgent = 0;
|
|
|
|
|
|
/**
|
|
|
* 1排产中,2.产前确认中,3.打印中,4.后整中,5烧花中,6.入库
|
|
|
*/
|
|
|
- private int craftStatus;
|
|
|
+ private int craftStatus = 1;
|
|
|
|
|
|
/**
|
|
|
* 销货单id
|
|
@@ -225,7 +231,7 @@ public class ProductionPlanVo extends BaseEntity {
|
|
|
/**
|
|
|
* 打印状态
|
|
|
*/
|
|
|
- private int printStatus;
|
|
|
+ private int printStatus = 0;
|
|
|
|
|
|
/**
|
|
|
* 发货数量
|
|
@@ -263,14 +269,14 @@ public class ProductionPlanVo extends BaseEntity {
|
|
|
private Long userId;
|
|
|
|
|
|
/**
|
|
|
- * 是否补货
|
|
|
+ * 是否补货,0否,1是
|
|
|
*/
|
|
|
- private int isBuhuo;
|
|
|
+ private int isBuhuo = 0;
|
|
|
|
|
|
/**
|
|
|
- * 是否系统单
|
|
|
+ * 是否系统单,0否,1是
|
|
|
*/
|
|
|
- private String isSys;
|
|
|
+ private String isSys = "0";
|
|
|
|
|
|
/**
|
|
|
*
|