c5edfa5a by chentao

新增系列属性

1 parent e003601d
...@@ -43,6 +43,12 @@ public class BuildingBlock extends BaseEntity { ...@@ -43,6 +43,12 @@ public class BuildingBlock extends BaseEntity {
43 private String language; 43 private String language;
44 44
45 /** 45 /**
46 * 类型(词语编程、图标编程、无编程)
47 */
48 private String type;
49
50
51 /**
46 * 删除标志(0代表存在 2代表删除) 52 * 删除标志(0代表存在 2代表删除)
47 */ 53 */
48 @TableLogic 54 @TableLogic
......
...@@ -35,6 +35,9 @@ public class BuildingBlockBo extends BaseBO { ...@@ -35,6 +35,9 @@ public class BuildingBlockBo extends BaseBO {
35 @NotBlank(message = "图片不能为空") 35 @NotBlank(message = "图片不能为空")
36 private String ossId; 36 private String ossId;
37 37
38 @NotBlank(message = "类型不能为空")
39 private String type;
40
38 /** 41 /**
39 * 排序 42 * 排序
40 */ 43 */
......
...@@ -41,6 +41,8 @@ public class BuildingBlockVo { ...@@ -41,6 +41,8 @@ public class BuildingBlockVo {
41 */ 41 */
42 private String language; 42 private String language;
43 43
44 private String type;
45
44 /** 46 /**
45 * 排序 47 * 排序
46 */ 48 */
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!