From 49ab626b5cb89219a4b4b86b5f1774f4705df51c Mon Sep 17 00:00:00 2001 From: LSH Date: 星期五, 01 十二月 2023 15:46:13 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/manager/entity/PlanType.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/crm/manager/entity/PlanType.java b/src/main/java/com/zy/crm/manager/entity/PlanType.java index aa2a22c..4bac64e 100644 --- a/src/main/java/com/zy/crm/manager/entity/PlanType.java +++ b/src/main/java/com/zy/crm/manager/entity/PlanType.java @@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.enums.IdType; import com.core.common.Cools; import com.core.common.SpringUtils; +import com.zy.crm.manager.service.OrderProductTypeService; import com.zy.crm.system.entity.Host; import com.zy.crm.system.entity.User; import com.zy.crm.system.service.HostService; @@ -61,6 +62,12 @@ private String formId; /** + * 浜у搧绫诲瀷ID + */ + @ApiModelProperty(value= "浜у搧绫诲瀷ID") + @TableField("order_product_type_id") + private Long orderProductTypeId; + /** * 琛ㄥ崟閰嶇疆 */ @ApiModelProperty(value= "琛ㄥ崟閰嶇疆") @@ -75,7 +82,7 @@ /** * 鍖哄垎 1: 璐ф灦 0: 闆嗘垚 */ - @ApiModelProperty(value= "鍖哄垎 1: 璐ф灦 0: 闆嗘垚 ") + @ApiModelProperty(value= "鍖哄垎 1: 璐ф灦 2: 闆嗘垚 ") private Integer type; /** @@ -122,6 +129,11 @@ public PlanType() {} + public PlanType(Long hostId,Integer type) { + this.hostId = hostId; + this.type = type; + } + public PlanType(Long hostId,String name,String flag,String formId,String data,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { this.hostId = hostId; this.name = name; -- Gitblit v1.9.1