c5edfa5a by chentao

新增系列属性

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