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
a37a70f1
Commit
a37a70f1
authored
Dec 04, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
9217106f
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
69 additions
and
1 deletion
+69
-1
ComProjectBasic.java
...main/java/com/yiboshi/science/entity/ComProjectBasic.java
+16
-0
ComProjectBasicDTO.java
...ava/com/yiboshi/science/param/dto/ComProjectBasicDTO.java
+16
-0
ComProjectDTO.java
...ain/java/com/yiboshi/science/param/dto/ComProjectDTO.java
+16
-0
ProjectKPIStatisticDTO.java
...com/yiboshi/science/param/dto/ProjectKPIStatisticDTO.java
+5
-0
ComProjectBasicQueryVO.java
...m/yiboshi/science/param/query/ComProjectBasicQueryVO.java
+16
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComProjectBasic.java
View file @
a37a70f1
...
@@ -205,6 +205,22 @@ public class ComProjectBasic extends BaseEntity {
...
@@ -205,6 +205,22 @@ public class ComProjectBasic extends BaseEntity {
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
private
String
projAttribute
;
private
String
projAttribute
;
/** 年度总目标 */
@ApiModelProperty
(
value
=
"年度总目标"
,
position
=
14
)
@Length
(
max
=
1000
,
message
=
"年度总目标1000"
)
private
String
yearTarget
;
/** 第一年目标 */
@ApiModelProperty
(
value
=
"第一年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第一年目标500"
)
private
String
year1Goal
;
/** 第二年目标 */
@ApiModelProperty
(
value
=
"第二年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第二年目标500"
)
private
String
year2Goal
;
/** 第三年目标 */
@ApiModelProperty
(
value
=
"第三年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
private
String
year3Goal
;
/** 备注 */
/** 备注 */
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectBasicDTO.java
View file @
a37a70f1
...
@@ -204,6 +204,22 @@ public class ComProjectBasicDTO extends BaseDTO {
...
@@ -204,6 +204,22 @@ public class ComProjectBasicDTO extends BaseDTO {
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
private
String
projAttribute
;
private
String
projAttribute
;
/** 年度总目标 */
@ApiModelProperty
(
value
=
"年度总目标"
,
position
=
14
)
@Length
(
max
=
1000
,
message
=
"年度总目标1000"
)
private
String
yearTarget
;
/** 第一年目标 */
@ApiModelProperty
(
value
=
"第一年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第一年目标500"
)
private
String
year1Goal
;
/** 第二年目标 */
@ApiModelProperty
(
value
=
"第二年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第二年目标500"
)
private
String
year2Goal
;
/** 第三年目标 */
@ApiModelProperty
(
value
=
"第三年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
private
String
year3Goal
;
/** 备注 */
/** 备注 */
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectDTO.java
View file @
a37a70f1
...
@@ -274,6 +274,22 @@ public class ComProjectDTO extends BaseDTO {
...
@@ -274,6 +274,22 @@ public class ComProjectDTO extends BaseDTO {
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
private
String
projAttribute
;
private
String
projAttribute
;
/** 年度总目标 */
@ApiModelProperty
(
value
=
"年度总目标"
,
position
=
14
)
@Length
(
max
=
1000
,
message
=
"年度总目标1000"
)
private
String
yearTarget
;
/** 第一年目标 */
@ApiModelProperty
(
value
=
"第一年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第一年目标500"
)
private
String
year1Goal
;
/** 第二年目标 */
@ApiModelProperty
(
value
=
"第二年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第二年目标500"
)
private
String
year2Goal
;
/** 第三年目标 */
@ApiModelProperty
(
value
=
"第三年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
private
String
year3Goal
;
/** 备注 */
/** 备注 */
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ProjectKPIStatisticDTO.java
View file @
a37a70f1
...
@@ -34,6 +34,11 @@ public class ProjectKPIStatisticDTO extends BaseDTO {
...
@@ -34,6 +34,11 @@ public class ProjectKPIStatisticDTO extends BaseDTO {
/** 自筹资金 */
/** 自筹资金 */
private
BigDecimal
yearSelf
;
private
BigDecimal
yearSelf
;
private
String
yearTarget
;
private
String
year1Goal
;
private
String
year2Goal
;
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/param/query/ComProjectBasicQueryVO.java
View file @
a37a70f1
...
@@ -203,7 +203,22 @@ public class ComProjectBasicQueryVO extends PaginationVO{
...
@@ -203,7 +203,22 @@ public class ComProjectBasicQueryVO extends PaginationVO{
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
private
String
projAttribute
;
private
String
projAttribute
;
/** 年度总目标 */
@ApiModelProperty
(
value
=
"年度总目标"
,
position
=
14
)
@Length
(
max
=
1000
,
message
=
"年度总目标1000"
)
private
String
yearTarget
;
/** 第一年目标 */
@ApiModelProperty
(
value
=
"第一年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第一年目标500"
)
private
String
year1Goal
;
/** 第二年目标 */
@ApiModelProperty
(
value
=
"第二年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第二年目标500"
)
private
String
year2Goal
;
/** 第三年目标 */
@ApiModelProperty
(
value
=
"第三年目标"
,
position
=
14
)
@Length
(
max
=
500
,
message
=
"第三年目标500"
)
private
String
year3Goal
;
/** 备注 */
/** 备注 */
@ApiModelProperty
(
value
=
"备注"
,
position
=
38
)
@ApiModelProperty
(
value
=
"备注"
,
position
=
38
)
...
...
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