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
fdcbaea8
Commit
fdcbaea8
authored
Dec 04, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
7e1ed719
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
6 deletions
+1
-6
ComProjectBasicDTO.java
...ava/com/yiboshi/science/param/dto/ComProjectBasicDTO.java
+0
-1
ComProjectDTO.java
...ain/java/com/yiboshi/science/param/dto/ComProjectDTO.java
+0
-3
ComProjectKpitDTO.java
...java/com/yiboshi/science/param/dto/ComProjectKpitDTO.java
+0
-1
ProjectKPIStatisticDTO.java
...com/yiboshi/science/param/dto/ProjectKPIStatisticDTO.java
+1
-0
ComProjectServiceImpl.java
...m/yiboshi/science/service/impl/ComProjectServiceImpl.java
+0
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectBasicDTO.java
View file @
fdcbaea8
...
@@ -221,7 +221,6 @@ public class ComProjectBasicDTO extends BaseDTO {
...
@@ -221,7 +221,6 @@ public class ComProjectBasicDTO extends BaseDTO {
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
private
String
year3Goal
;
private
String
year3Goal
;
/** 备注 */
/** 备注 */
@ApiModelProperty
(
value
=
"备注"
,
position
=
38
)
@ApiModelProperty
(
value
=
"备注"
,
position
=
38
)
@Length
(
max
=
65535
,
message
=
"备注不能大于65535"
)
@Length
(
max
=
65535
,
message
=
"备注不能大于65535"
)
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectDTO.java
View file @
fdcbaea8
...
@@ -291,14 +291,11 @@ public class ComProjectDTO extends BaseDTO {
...
@@ -291,14 +291,11 @@ public class ComProjectDTO extends BaseDTO {
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
private
String
year3Goal
;
private
String
year3Goal
;
/** 备注 */
/** 备注 */
@ApiModelProperty
(
value
=
"备注"
,
position
=
38
)
@ApiModelProperty
(
value
=
"备注"
,
position
=
38
)
@Length
(
max
=
65535
,
message
=
"备注不能大于65535"
)
@Length
(
max
=
65535
,
message
=
"备注不能大于65535"
)
private
String
remark
;
private
String
remark
;
/** 项目组成员_总人数 */
/** 项目组成员_总人数 */
@ApiModelProperty
(
value
=
"项目组成员_总人数"
,
position
=
17
)
@ApiModelProperty
(
value
=
"项目组成员_总人数"
,
position
=
17
)
private
Integer
memCount
;
private
Integer
memCount
;
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectKpitDTO.java
View file @
fdcbaea8
...
@@ -64,5 +64,4 @@ public class ComProjectKpitDTO extends BaseDTO {
...
@@ -64,5 +64,4 @@ public class ComProjectKpitDTO extends BaseDTO {
/** 年度3指标 */
/** 年度3指标 */
@ApiModelProperty
(
value
=
"年度3指标"
,
position
=
7
)
@ApiModelProperty
(
value
=
"年度3指标"
,
position
=
7
)
private
Integer
yearValue3
;
private
Integer
yearValue3
;
}
}
science-admin/src/main/java/com/yiboshi/science/param/dto/ProjectKPIStatisticDTO.java
View file @
fdcbaea8
...
@@ -39,6 +39,7 @@ public class ProjectKPIStatisticDTO extends BaseDTO {
...
@@ -39,6 +39,7 @@ public class ProjectKPIStatisticDTO extends BaseDTO {
private
String
year2Goal
;
private
String
year2Goal
;
private
String
year3Goal
;
private
String
year3Goal
;
private
Integer
totalRowSpan
;
//总合并行数
private
Integer
totalRowSpan
;
//总合并行数
private
Integer
outTarget
;
//一级指标(产出指标)
private
Integer
outTarget
;
//一级指标(产出指标)
private
Integer
benefitTarget
;
//一级指标(效益指标)
private
Integer
benefitTarget
;
//一级指标(效益指标)
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectServiceImpl.java
View file @
fdcbaea8
...
@@ -777,7 +777,6 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
...
@@ -777,7 +777,6 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
// 项目绩效指标表
// 项目绩效指标表
comProjectKpitDetailService
.
insertList
(
dto
.
getProjectKPI
().
getKpiList
(),
comProject
.
getId
());
comProjectKpitDetailService
.
insertList
(
dto
.
getProjectKPI
().
getKpiList
(),
comProject
.
getId
());
// 项目经费构成表
// 项目经费构成表
comProjectFundCompositionService
.
insertList
(
dto
.
getFundCompositions
(),
comProject
.
getId
());
comProjectFundCompositionService
.
insertList
(
dto
.
getFundCompositions
(),
comProject
.
getId
());
// 在研或完成基础研究项目情况
// 在研或完成基础研究项目情况
...
...
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