管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-08 f067ba7ac87eb2d13ad3957de342e2be5cce8027
1
已修改3个文件
15 ■■■■■ 文件已修改
data/db_cx.sql 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
data/db_tab.sql 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/lf/server/entity/show/ModelEntity.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
data/db_cx.sql
@@ -19,6 +19,9 @@
select * from bs.th_strategic_channel
select * from lf.sys_dict where tab='th_strategic_channel'
select * from bs.sys_model
data/db_tab.sql
@@ -1219,7 +1219,7 @@
  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),
@@ -1233,9 +1233,9 @@
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 '图标';
src/main/java/com/lf/server/entity/show/ModelEntity.java
@@ -20,7 +20,7 @@
    private String name;
    private int type;
    private String type;
    private String info;
@@ -81,11 +81,11 @@
        this.name = name;
    }
    public int getType() {
    public String getType() {
        return type;
    }
    public void setType(int type) {
    public void setType(String type) {
        this.type = type;
    }