|
@@ -4,7 +4,6 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
-import java.time.LocalDateTime;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
@@ -71,7 +70,6 @@ public class KlRulePlan implements Serializable {
|
|
|
* 类型编码
|
|
|
*/
|
|
|
private String code;
|
|
|
- private Integer firstPlace;
|
|
|
/**
|
|
|
* 显示顺序
|
|
|
*/
|
|
@@ -79,14 +77,6 @@ public class KlRulePlan implements Serializable {
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
- public Integer getFirstPlace() {
|
|
|
- return firstPlace;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFirstPlace(Integer firstPlace) {
|
|
|
- this.firstPlace = firstPlace;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getNumber() {
|
|
|
return number;
|
|
|
}
|
|
@@ -102,6 +92,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -109,6 +100,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
@@ -116,6 +108,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
@@ -123,6 +116,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -130,6 +124,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -137,6 +132,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public Long getRuleType() {
|
|
|
return ruleType;
|
|
|
}
|
|
@@ -144,6 +140,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setRuleType(Long ruleType) {
|
|
|
this.ruleType = ruleType;
|
|
|
}
|
|
|
+
|
|
|
public Long getParentId() {
|
|
|
return parentId;
|
|
|
}
|
|
@@ -151,6 +148,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setParentId(Long parentId) {
|
|
|
this.parentId = parentId;
|
|
|
}
|
|
|
+
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
@@ -158,6 +156,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
+
|
|
|
public Integer getType() {
|
|
|
return type;
|
|
|
}
|
|
@@ -165,6 +164,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setType(Integer type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
+
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
@@ -172,6 +172,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
+
|
|
|
public Integer getOrderNo() {
|
|
|
return orderNo;
|
|
|
}
|
|
@@ -179,6 +180,7 @@ public class KlRulePlan implements Serializable {
|
|
|
public void setOrderNo(Integer orderNo) {
|
|
|
this.orderNo = orderNo;
|
|
|
}
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|