Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
legobackend
/
lego-manage
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c5edfa5a
authored
2025-09-22 21:57:40 +0800
by
chentao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
新增系列属性
1 parent
e003601d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
lego-core/src/main/java/com/lego/core/domain/BuildingBlock.java
lego-core/src/main/java/com/lego/core/domain/bo/BuildingBlockBo.java
lego-core/src/main/java/com/lego/core/domain/vo/BuildingBlockVo.java
lego-core/src/main/java/com/lego/core/domain/BuildingBlock.java
View file @
c5edfa5
...
...
@@ -43,6 +43,12 @@ public class BuildingBlock extends BaseEntity {
private
String
language
;
/**
* 类型(词语编程、图标编程、无编程)
*/
private
String
type
;
/**
* 删除标志(0代表存在 2代表删除)
*/
@TableLogic
...
...
lego-core/src/main/java/com/lego/core/domain/bo/BuildingBlockBo.java
View file @
c5edfa5
...
...
@@ -35,6 +35,9 @@ public class BuildingBlockBo extends BaseBO {
@NotBlank
(
message
=
"图片不能为空"
)
private
String
ossId
;
@NotBlank
(
message
=
"类型不能为空"
)
private
String
type
;
/**
* 排序
*/
...
...
lego-core/src/main/java/com/lego/core/domain/vo/BuildingBlockVo.java
View file @
c5edfa5
...
...
@@ -41,6 +41,8 @@ public class BuildingBlockVo {
*/
private
String
language
;
private
String
type
;
/**
* 排序
*/
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment