Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
yn-health-science
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐俊
yn-health-science
Commits
83859cd8
Commit
83859cd8
authored
Aug 11, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
48d8f735
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
ComEvaluationItem.java
...in/java/com/yiboshi/science/entity/ComEvaluationItem.java
+2
-0
ComEvaluationItemDTO.java
...a/com/yiboshi/science/param/dto/ComEvaluationItemDTO.java
+2
-0
ComEvaluationItemDAO.xml
...-admin/src/main/resources/mapper/ComEvaluationItemDAO.xml
+1
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComEvaluationItem.java
View file @
83859cd8
...
...
@@ -41,4 +41,6 @@ public class ComEvaluationItem extends BaseEntity {
@ApiModelProperty
(
value
=
"备注"
,
position
=
6
)
@Length
(
max
=
200
,
message
=
"备注不能大于200"
)
private
String
remark
;
/** 状态 1 正常 0 注销 */
private
Integer
state
;
}
science-admin/src/main/java/com/yiboshi/science/param/dto/ComEvaluationItemDTO.java
View file @
83859cd8
...
...
@@ -44,6 +44,8 @@ public class ComEvaluationItemDTO extends BaseDTO {
@ApiModelProperty
(
value
=
"备注"
,
position
=
6
)
@Length
(
max
=
200
,
message
=
"备注不能大于200"
)
private
String
remark
;
/** 状态 1 正常 0 注销 */
private
Integer
state
;
/** 父Id */
@ApiModelProperty
(
value
=
"父Id"
,
position
=
2
)
...
...
science-admin/src/main/resources/mapper/ComEvaluationItemDAO.xml
View file @
83859cd8
...
...
@@ -11,7 +11,7 @@
FROM com_evaluation_item a
left join com_evaluation_item b on a.parent_id=b.id
left join com_evaluation_item c on b.parent_id=c.id
where a.evaluation_id=#{evaluationId} and b.id is not null and c.id is not null
where a.evaluation_id=#{evaluationId} and b.id is not null and c.id is not null
and a.state=1 and b.state=1 and c.state=1
order by a.show_index asc
</select>
</mapper>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment