95f10dc6 by chentao

新增系列排序

1 parent da7fff85
...@@ -53,4 +53,9 @@ public class BuildingBlock extends BaseEntity { ...@@ -53,4 +53,9 @@ public class BuildingBlock extends BaseEntity {
53 @TableLogic 53 @TableLogic
54 private String delFlag; 54 private String delFlag;
55 55
56 /**
57 * 排序
58 */
59 private Long sort;
60
56 } 61 }
......
...@@ -40,4 +40,9 @@ public class BuildingBlockBo extends BaseBO { ...@@ -40,4 +40,9 @@ public class BuildingBlockBo extends BaseBO {
40 */ 40 */
41 @NotBlank(message = "图片不能为空") 41 @NotBlank(message = "图片不能为空")
42 private String ossId; 42 private String ossId;
43
44 /**
45 * 排序
46 */
47 private Long sort;
43 } 48 }
......
...@@ -48,4 +48,9 @@ public class BuildingBlockVo { ...@@ -48,4 +48,9 @@ public class BuildingBlockVo {
48 * 前端APP数据国际化(zh_CN、en_US、ru_RU) 48 * 前端APP数据国际化(zh_CN、en_US、ru_RU)
49 */ 49 */
50 private String language; 50 private String language;
51
52 /**
53 * 排序
54 */
55 private Long sort;
51 } 56 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!