update orderby

This commit is contained in:
郭文豪 2024-09-28 17:31:00 +08:00
parent 3e09fce5ae
commit 4a1c131bbb
4 changed files with 17 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class GwSlideshow extends BaseEntity {
private String isTop;
/**
* 类别: 0-党建 1-新闻
* 类别: 0-党建 1-新闻 3-业务
*/
private String type;
/**
@ -72,4 +72,10 @@ public class GwSlideshow extends BaseEntity {
*/
private Long updateUserId;
/**
* 排序吗
*/
private String orderBy;
}

View File

@ -76,4 +76,9 @@ public class GwSlideshowBo extends BaseEntity {
*/
private String type;
/**
* 排序吗
*/
private String orderBy;
}

View File

@ -97,5 +97,9 @@ public class GwSlideshowVo {
@ExcelProperty(value = "更新者id")
private Long updateUserId;
/**
* 排序吗
*/
private String orderBy;
}

View File

@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateBy" column="update_by"/>
<result property="updateUserId" column="update_user_id"/>
<result property="updateTime" column="update_time"/>
<result property="orderBy" column="order_by"/>
</resultMap>