Commit 6e4c4ebe by guojuxing

规则场景添加一个字段:场景名称

parent 20965721
......@@ -42,6 +42,11 @@ public class ConfigRuleDTO implements Serializable{
private String remark;
/**
* 场景手动输入名称
*/
private String marketName;
/**
* 营销场景ID/code
*/
private String marketScene;
......@@ -200,4 +205,13 @@ public class ConfigRuleDTO implements Serializable{
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public String getMarketName() {
return marketName;
}
public ConfigRuleDTO setMarketName(String marketName) {
this.marketName = marketName;
return this;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment