This commit is contained in:
2019-04-22 00:27:04 +08:00
parent db8c9b3182
commit ebbd490913
19 changed files with 329 additions and 107 deletions

View File

@@ -19,6 +19,7 @@ public class MetaService extends Doc<MetaService> {
private String comment; //业务中文名
//private List<String> links; //["link._key1","link._key2"]
private String sysPlatId; //平台id
private List<String> shows = new ArrayList<>();
private List<Map> edits = new ArrayList<>();
@@ -56,6 +57,13 @@ public class MetaService extends Doc<MetaService> {
this.comment = comment;
}
public String getSysPlatId() {
return sysPlatId;
}
public void setSysPlatId(String sysPlatId) {
this.sysPlatId = sysPlatId;
}
/*public List<String> getLinks() {
return links;
}