1、支持列表自定义表头
2、业务完事,代码优化
This commit is contained in:
@@ -17,11 +17,9 @@ public class MetaService extends Doc<MetaService> {
|
||||
private String name; //业务标识
|
||||
private String table; //主体表别名
|
||||
private String comment; //业务中文名
|
||||
//private List<String> links; //["link._key1","link._key2"]
|
||||
|
||||
private String sysPlatId; //平台id
|
||||
|
||||
private List<String> shows = new ArrayList<>();
|
||||
private List<Map<String,String>> shows = new ArrayList<>();
|
||||
private List<Map> edits = new ArrayList<>();
|
||||
private List<String> details = new ArrayList<>();
|
||||
private List<Map> filters = new ArrayList<>();
|
||||
@@ -64,19 +62,12 @@ public class MetaService extends Doc<MetaService> {
|
||||
public void setSysPlatId(String sysPlatId) {
|
||||
this.sysPlatId = sysPlatId;
|
||||
}
|
||||
/*public List<String> getLinks() {
|
||||
return links;
|
||||
}
|
||||
|
||||
public void setLinks(List<String> links) {
|
||||
this.links = links;
|
||||
}*/
|
||||
|
||||
public List<String> getShows() {
|
||||
public List<Map<String, String>> getShows() {
|
||||
return shows;
|
||||
}
|
||||
|
||||
public void setShows(List<String> shows) {
|
||||
public void setShows(List<Map<String, String>> shows) {
|
||||
this.shows = shows;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user