Commit 60135a7f by 吴迪

【修改】bug修改

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