Commit dd0aa026 by kangxiaoshan

合同套餐

parent fe3bbb9d
...@@ -13,6 +13,7 @@ public class PackageBase { ...@@ -13,6 +13,7 @@ public class PackageBase {
private String platform; private String platform;
private int sort; private int sort;
private int status; private int status;
private String type;
@Id @Id
...@@ -56,4 +57,12 @@ public class PackageBase { ...@@ -56,4 +57,12 @@ public class PackageBase {
public void setStatus(int status) { public void setStatus(int status) {
this.status = status; this.status = status;
} }
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
} }
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