Commit 60135a7f by 吴迪

【修改】bug修改

parent 4bdc9d85
...@@ -558,7 +558,7 @@ GO ...@@ -558,7 +558,7 @@ GO
CREATE TABLE [dbo].[medical] ( CREATE TABLE [dbo].[medical] (
[id] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL , [id] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[title] varchar(50) COLLATE Chinese_PRC_CI_AS NULL , [title] varchar(500) COLLATE Chinese_PRC_CI_AS NULL ,
[type] varchar(20) COLLATE Chinese_PRC_CI_AS NULL , [type] varchar(20) COLLATE Chinese_PRC_CI_AS NULL ,
[level] int NULL , [level] int NULL ,
[jumppath] varchar(255) COLLATE Chinese_PRC_CI_AS NULL , [jumppath] varchar(255) COLLATE Chinese_PRC_CI_AS NULL ,
...@@ -628,4 +628,11 @@ GO ...@@ -628,4 +628,11 @@ GO
update news set showtime= replace(showtime,'/','-'); update news set showtime= replace(showtime,'/','-');
alter table index_carousel_manage add is_show varchar(2) not null default (1); alter table index_carousel_manage add is_show varchar(2) not null default (1);
\ No newline at end of file
##文件夹内容上传 2021-12-18 Movie ./redis-server.exe redis.windows.conf
...@@ -35,7 +35,7 @@ public class MedicalServiceImpl extends ServiceImpl<MedicalDao, MedicalEntity> i ...@@ -35,7 +35,7 @@ public class MedicalServiceImpl extends ServiceImpl<MedicalDao, MedicalEntity> i
if(!StringUtil.isNullOrEmpty(String.valueOf(params.get("level")))){ if(!StringUtil.isNullOrEmpty(String.valueOf(params.get("level")))){
medicalEntityQueryWrapper.eq("level",params.get("level")); medicalEntityQueryWrapper.eq("level",params.get("level"));
} else { } else {
medicalEntityQueryWrapper.ge("level",0); medicalEntityQueryWrapper.gt("level",0);
} }
IPage<MedicalEntity> page = this.page( IPage<MedicalEntity> page = this.page(
new Query<MedicalEntity>().getPage(params), new Query<MedicalEntity>().getPage(params),
......
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