Commit 611f0d85 authored by lee_mingzhu's avatar lee_mingzhu

change something

parent 15f800f7
......@@ -25,9 +25,6 @@ public class Channel implements Serializable {
@Column(name = "name")
private String name;
@Column(name = "strategy_name")
private String strategyName;
public Long getId() {
return id;
}
......@@ -52,13 +49,6 @@ public class Channel implements Serializable {
this.name = name;
}
public String getStrategyName() {
return strategyName;
}
public void setStrategyName(String strategyName) {
this.strategyName = strategyName;
}
@Override
public String toString() {
......@@ -66,7 +56,6 @@ public class Channel implements Serializable {
"channelCode='" + channelCode + '\'' +
", id=" + id +
", name='" + name + '\'' +
", strategyName='" + strategyName + '\'' +
'}';
}
}
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