src/main/java/com/zy/crm/manager/entity/PlanType.java
@@ -73,6 +73,12 @@ private String html; /** * 区分 1: 货架 0: 继承 */ @ApiModelProperty(value= "区分 1: 货架 0: 继承 ") private Integer type; /** * 状态 1: 正常 0: 禁用 */ @ApiModelProperty(value= "状态 1: 正常 0: 禁用 ") @@ -153,6 +159,18 @@ return null; } public String getType$(){ if (null == this.type){ return null; } switch (this.type){ case 1: return "货架"; case 2: return "集成"; default: return String.valueOf(this.type); } } public String getStatus$(){ if (null == this.status){ return null; } switch (this.status){