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
9bb63827
Commit
9bb63827
authored
Dec 04, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
2b2a4a1e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
189 additions
and
0 deletions
+189
-0
ComProjectKpitDetail.java
...java/com/yiboshi/science/entity/ComProjectKpitDetail.java
+63
-0
ComProjectKpitDetailDTO.java
...om/yiboshi/science/param/dto/ComProjectKpitDetailDTO.java
+63
-0
ComProjectKpitDetailQueryVO.java
...oshi/science/param/query/ComProjectKpitDetailQueryVO.java
+63
-0
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComProjectKpitDetail.java
0 → 100644
View file @
9bb63827
package
com
.
yiboshi
.
science
.
entity
;
import
com.yiboshi.science.base.BaseEntity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
description
=
"项目绩效指标表VO"
)
public
class
ComProjectKpitDetail
extends
BaseEntity
{
/** kpitId */
@ApiModelProperty
(
value
=
"kpitId"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"kpitId不能大于36"
)
private
String
kpitId
;
/** 绩效类型名称 */
@ApiModelProperty
(
value
=
"绩效类型名称"
,
position
=
1
)
@Length
(
max
=
200
,
message
=
"绩效类型名称不能大于200"
)
private
String
kpitName
;
/** 项目Id */
@ApiModelProperty
(
value
=
"项目Id"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"项目Id不能大于36"
)
private
String
objectId
;
/** 一级指标名称 */
@ApiModelProperty
(
value
=
"一级指标名称"
,
position
=
1
)
@Length
(
max
=
40
,
message
=
"一级指标名称不能大于40"
)
private
String
oneLevelName
;
/** 二级指标名称 */
@ApiModelProperty
(
value
=
"二级指标名称"
,
position
=
1
)
@Length
(
max
=
40
,
message
=
"二级指标名称不能大于40"
)
private
String
towLevelName
;
/** 指标值 */
@ApiModelProperty
(
value
=
"指标值"
,
position
=
7
)
private
Integer
targetValue
;
/** 绩效标准 */
@ApiModelProperty
(
value
=
"绩效标准"
,
position
=
7
)
private
Integer
performanceStandard
;
/** 年度1指标 */
@ApiModelProperty
(
value
=
"年度1指标"
,
position
=
7
)
private
Integer
yearValue1
;
/** 年度2指标 */
@ApiModelProperty
(
value
=
"年度2指标"
,
position
=
7
)
private
Integer
yearValue2
;
/** 年度3指标 */
@ApiModelProperty
(
value
=
"年度3指标"
,
position
=
7
)
private
Integer
yearValue3
;
/** 一级指标显示 */
@ApiModelProperty
(
value
=
"一级指标显示"
,
position
=
7
)
private
boolean
oneDisplay
;
/** 二级指标显示 */
@ApiModelProperty
(
value
=
"二级指标显示"
,
position
=
7
)
private
boolean
towDisplay
;
/** 一级指标行合并数 */
@ApiModelProperty
(
value
=
"一级指标行合并数"
,
position
=
7
)
private
Integer
oneRowSpan
;
/** 二级指标行合并数 */
@ApiModelProperty
(
value
=
"二级指标行合并数"
,
position
=
7
)
private
Integer
towRowSpan
;
}
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectKpitDetailDTO.java
0 → 100644
View file @
9bb63827
package
com
.
yiboshi
.
science
.
param
.
dto
;
import
com.yiboshi.science.base.BaseDTO
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
description
=
"项目绩效指标表DTO"
)
public
class
ComProjectKpitDetailDTO
extends
BaseDTO
{
/** kpitId */
@ApiModelProperty
(
value
=
"kpitId"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"kpitId不能大于36"
)
private
String
kpitId
;
/** 绩效类型名称 */
@ApiModelProperty
(
value
=
"绩效类型名称"
,
position
=
1
)
@Length
(
max
=
200
,
message
=
"绩效类型名称不能大于200"
)
private
String
kpitName
;
/** 项目Id */
@ApiModelProperty
(
value
=
"项目Id"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"项目Id不能大于36"
)
private
String
objectId
;
/** 一级指标名称 */
@ApiModelProperty
(
value
=
"一级指标名称"
,
position
=
1
)
@Length
(
max
=
40
,
message
=
"一级指标名称不能大于40"
)
private
String
oneLevelName
;
/** 二级指标名称 */
@ApiModelProperty
(
value
=
"二级指标名称"
,
position
=
1
)
@Length
(
max
=
40
,
message
=
"二级指标名称不能大于40"
)
private
String
towLevelName
;
/** 指标值 */
@ApiModelProperty
(
value
=
"指标值"
,
position
=
7
)
private
Integer
targetValue
;
/** 绩效标准 */
@ApiModelProperty
(
value
=
"绩效标准"
,
position
=
7
)
private
Integer
performanceStandard
;
/** 年度1指标 */
@ApiModelProperty
(
value
=
"年度1指标"
,
position
=
7
)
private
Integer
yearValue1
;
/** 年度2指标 */
@ApiModelProperty
(
value
=
"年度2指标"
,
position
=
7
)
private
Integer
yearValue2
;
/** 年度3指标 */
@ApiModelProperty
(
value
=
"年度3指标"
,
position
=
7
)
private
Integer
yearValue3
;
/** 一级指标显示 */
@ApiModelProperty
(
value
=
"一级指标显示"
,
position
=
7
)
private
boolean
oneDisplay
;
/** 二级指标显示 */
@ApiModelProperty
(
value
=
"二级指标显示"
,
position
=
7
)
private
boolean
towDisplay
;
/** 一级指标行合并数 */
@ApiModelProperty
(
value
=
"一级指标行合并数"
,
position
=
7
)
private
Integer
oneRowSpan
;
/** 二级指标行合并数 */
@ApiModelProperty
(
value
=
"二级指标行合并数"
,
position
=
7
)
private
Integer
towRowSpan
;
}
science-admin/src/main/java/com/yiboshi/science/param/query/ComProjectKpitDetailQueryVO.java
0 → 100644
View file @
9bb63827
package
com
.
yiboshi
.
science
.
param
.
query
;
import
com.yiboshi.science.base.PaginationVO
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
description
=
"查询项目绩效指标表VO"
)
public
class
ComProjectKpitDetailQueryVO
extends
PaginationVO
{
/** kpitId */
@ApiModelProperty
(
value
=
"kpitId"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"kpitId不能大于36"
)
private
String
kpitId
;
/** 绩效类型名称 */
@ApiModelProperty
(
value
=
"绩效类型名称"
,
position
=
1
)
@Length
(
max
=
200
,
message
=
"绩效类型名称不能大于200"
)
private
String
kpitName
;
/** 项目Id */
@ApiModelProperty
(
value
=
"项目Id"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"项目Id不能大于36"
)
private
String
objectId
;
/** 一级指标名称 */
@ApiModelProperty
(
value
=
"一级指标名称"
,
position
=
1
)
@Length
(
max
=
40
,
message
=
"一级指标名称不能大于40"
)
private
String
oneLevelName
;
/** 二级指标名称 */
@ApiModelProperty
(
value
=
"二级指标名称"
,
position
=
1
)
@Length
(
max
=
40
,
message
=
"二级指标名称不能大于40"
)
private
String
towLevelName
;
/** 指标值 */
@ApiModelProperty
(
value
=
"指标值"
,
position
=
7
)
private
Integer
targetValue
;
/** 绩效标准 */
@ApiModelProperty
(
value
=
"绩效标准"
,
position
=
7
)
private
Integer
performanceStandard
;
/** 年度1指标 */
@ApiModelProperty
(
value
=
"年度1指标"
,
position
=
7
)
private
Integer
yearValue1
;
/** 年度2指标 */
@ApiModelProperty
(
value
=
"年度2指标"
,
position
=
7
)
private
Integer
yearValue2
;
/** 年度3指标 */
@ApiModelProperty
(
value
=
"年度3指标"
,
position
=
7
)
private
Integer
yearValue3
;
/** 一级指标显示 */
@ApiModelProperty
(
value
=
"一级指标显示"
,
position
=
7
)
private
boolean
oneDisplay
;
/** 二级指标显示 */
@ApiModelProperty
(
value
=
"二级指标显示"
,
position
=
7
)
private
boolean
towDisplay
;
/** 一级指标行合并数 */
@ApiModelProperty
(
value
=
"一级指标行合并数"
,
position
=
7
)
private
Integer
oneRowSpan
;
/** 二级指标行合并数 */
@ApiModelProperty
(
value
=
"二级指标行合并数"
,
position
=
7
)
private
Integer
towRowSpan
;
}
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