Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
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
1566d549
Commit
1566d549
authored
Jul 25, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
453b7f71
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
ComEvaluationItem.java
...in/java/com/yiboshi/science/entity/ComEvaluationItem.java
+3
-0
ComEvaluationItemDTO.java
...a/com/yiboshi/science/param/dto/ComEvaluationItemDTO.java
+2
-1
ComTalentAssignServiceImpl.java
...oshi/science/service/impl/ComTalentAssignServiceImpl.java
+0
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComEvaluationItem.java
View file @
1566d549
...
...
@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.apache.poi.hpsf.Decimal
;
import
org.hibernate.validator.constraints.Length
;
import
java.math.BigDecimal
;
...
...
@@ -34,6 +35,8 @@ public class ComEvaluationItem extends BaseEntity {
/** 值类型:1单选、2多选、3打分 */
@ApiModelProperty
(
value
=
"值类型:1单选、2多选、3打分"
,
position
=
5
)
private
Integer
valueType
;
/** 最大分值 */
private
Decimal
maxScore
;
/** 备注 */
@ApiModelProperty
(
value
=
"备注"
,
position
=
6
)
@Length
(
max
=
200
,
message
=
"备注不能大于200"
)
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComEvaluationItemDTO.java
View file @
1566d549
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.apache.poi.hpsf.Decimal
;
import
org.hibernate.validator.constraints.Length
;
import
java.math.BigDecimal
;
...
...
@@ -38,7 +39,7 @@ public class ComEvaluationItemDTO extends BaseDTO {
@ApiModelProperty
(
value
=
"值类型:1单选、2多选、3打分"
,
position
=
5
)
private
Integer
valueType
;
/** 最大分值 */
private
Integer
maxScore
;
private
Decimal
maxScore
;
/** 备注 */
@ApiModelProperty
(
value
=
"备注"
,
position
=
6
)
@Length
(
max
=
200
,
message
=
"备注不能大于200"
)
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComTalentAssignServiceImpl.java
View file @
1566d549
...
...
@@ -104,7 +104,6 @@ public class ComTalentAssignServiceImpl extends BaseServiceImpl<ComTalentAssignD
return
new
Pagination
<>(
dtoList
,
page
.
getTotal
(),
vo
.
getPageSize
());
}
@Transactional
public
String
assignTalent
(
Map
<
String
,
Object
>
map
)
{
List
<
String
>
talents
=
null
;
...
...
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