fix notice desc

master
luoyang 5 years ago
parent 3894c860c9
commit 23978cf017

@ -9,7 +9,7 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>manage</artifactId> <artifactId>manage</artifactId>
<version>2.1.10</version> <version>2.1.11</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jib-maven-plugin.version>1.8.0</jib-maven-plugin.version> <jib-maven-plugin.version>1.8.0</jib-maven-plugin.version>

@ -2,6 +2,7 @@ package au.com.royalpay.payment.manage.mappers.notice;
import java.util.Date; import java.util.Date;
import com.yixsoft.support.mybatis.autosql.annotations.AdvanceSelect;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
@ -20,6 +21,7 @@ public interface NoticeManageMapper {
@AutoSql(SqlType.SELECT) @AutoSql(SqlType.SELECT)
PageList<JSONObject> listPageNotices(JSONObject params, PageBounds pagination); PageList<JSONObject> listPageNotices(JSONObject params, PageBounds pagination);
@AutoSql(SqlType.SELECT) @AutoSql(SqlType.SELECT)
@AdvanceSelect(excludeColumns = {"desc"})
JSONObject getNoticeDetailById(String noticeId); JSONObject getNoticeDetailById(String noticeId);
@AutoSql(SqlType.INSERT) @AutoSql(SqlType.INSERT)
void createNotice(JSONObject notice); void createNotice(JSONObject notice);

Loading…
Cancel
Save