| | |
| | | |
| | | select * from bs.th_strategic_channel |
| | | select * from lf.sys_dict where tab='th_strategic_channel' |
| | | select * from bs.sys_model |
| | | |
| | | |
| | | |
| | | |
| | | |
| | |
| | | modelid varchar(200), |
| | | guid varchar(40), |
| | | name varchar(100), |
| | | type smallint default 0, |
| | | type varchar(50), |
| | | info varchar(2048), |
| | | url varchar(1024), |
| | | icon varchar(256), |
| | |
| | | comment on column lf.sys_model.id is '主键ID'; |
| | | comment on column lf.sys_model.layerid is '图层ID'; |
| | | comment on column lf.sys_model.modelid is '模型ID'; |
| | | comment on column lf.sys_model.guid is '文件GUID'; |
| | | comment on column lf.sys_model.guid is 'GUID'; |
| | | comment on column lf.sys_model.name is '名称'; |
| | | comment on column lf.sys_model.type is '类别'; |
| | | comment on column lf.sys_model.type is '类型'; |
| | | comment on column lf.sys_model.info is '信息(JSON)'; |
| | | comment on column lf.sys_model.url is 'URL'; |
| | | comment on column lf.sys_model.icon is '图标'; |
| | |
| | | |
| | | private String name; |
| | | |
| | | private int type; |
| | | private String type; |
| | | |
| | | private String info; |
| | | |
| | |
| | | this.name = name; |
| | | } |
| | | |
| | | public int getType() { |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(int type) { |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |