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
98cb8e32
Commit
98cb8e32
authored
Dec 26, 2024
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
77
parent
839c347d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
31 deletions
+0
-31
ComProjectDTO.java
...ain/java/com/yiboshi/science/param/dto/ComProjectDTO.java
+0
-31
No files found.
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectDTO.java
View file @
98cb8e32
...
...
@@ -24,31 +24,24 @@ import java.util.List;
public
class
ComProjectDTO
extends
BaseDTO
{
/** 项目名称 */
@ApiModelProperty
(
value
=
"项目名称"
,
position
=
1
)
@Length
(
max
=
150
,
message
=
"项目名称不能大于50"
)
private
String
projName
;
/** 项目名称(英文) */
@ApiModelProperty
(
value
=
"项目名称(英文)"
,
position
=
1
)
@Length
(
max
=
500
,
message
=
"项目名称(英文)不能大于500"
)
private
String
englishName
;
/** 项目编号 */
@ApiModelProperty
(
value
=
"项目编号"
,
position
=
2
)
@Length
(
max
=
100
,
message
=
"项目编号不能大于100"
)
private
String
projNo
;
/** 申请编号 */
@ApiModelProperty
(
value
=
"申请编号"
,
position
=
4
)
@Length
(
max
=
200
,
message
=
"申请编号不能大于200"
)
private
String
appNo
;
/** 版本号 */
@ApiModelProperty
(
value
=
"版本号"
,
position
=
5
)
@Length
(
max
=
20
,
message
=
"版本号不能大于20"
)
private
String
versionNo
;
/** 申报单位Id */
@ApiModelProperty
(
value
=
"申报单位Id"
,
position
=
8
)
@Length
(
max
=
36
,
message
=
"申报单位Id不能大于36"
)
private
String
appUnitId
;
/** 申报人Id */
@ApiModelProperty
(
value
=
"申报人Id"
,
position
=
9
)
@Length
(
max
=
36
,
message
=
"申报人Id不能大于36"
)
private
String
appPersonId
;
/** 申报年度 */
@ApiModelProperty
(
value
=
"申报年度"
,
position
=
6
)
...
...
@@ -78,7 +71,6 @@ public class ComProjectDTO extends BaseDTO {
private
Date
endDate
;
/** 学科Id */
@ApiModelProperty
(
value
=
"学科Id"
,
position
=
16
)
@Length
(
max
=
36
,
message
=
"学科Id不能大于36"
)
private
String
knowledgeId
;
/** 专家/专家组是否评审完成 0否 1是 */
@ApiModelProperty
(
value
=
"是否评审完成"
,
position
=
6
)
...
...
@@ -111,7 +103,6 @@ public class ComProjectDTO extends BaseDTO {
/** 项目Id */
@ApiModelProperty
(
value
=
"项目Id"
)
@Length
(
max
=
36
,
message
=
"Id不能大于36"
)
private
String
projId
;
/** 每年工作时间(月) */
...
...
@@ -119,37 +110,29 @@ public class ComProjectDTO extends BaseDTO {
private
Integer
jobTime
;
/** 主要研究领域 */
@ApiModelProperty
(
value
=
"主要研究领域"
,
position
=
19
)
@Length
(
max
=
200
,
message
=
"主要研究领域不能大于200"
)
private
String
mainResearchAreas
;
/** 单位联系人姓名 */
@ApiModelProperty
(
value
=
"单位联系人姓名"
,
position
=
16
)
@Length
(
max
=
100
,
message
=
"单位联系人姓名不能大于100"
)
private
String
unitLinkName
;
/** 单位联系人手机 */
@ApiModelProperty
(
value
=
"单位联系人手机"
,
position
=
16
)
@Length
(
max
=
50
,
message
=
"单位联系人手机不能大于50"
)
private
String
unitLinkMobile
;
/** 单位电子邮箱 */
@ApiModelProperty
(
value
=
"单位电子邮箱"
,
position
=
16
)
@Length
(
max
=
100
,
message
=
"单位电子邮箱不能大于100"
)
private
String
unitLinkEmail
;
/** 单位传真 */
@ApiModelProperty
(
value
=
"单位传真"
,
position
=
16
)
@Length
(
max
=
100
,
message
=
"单位传真不能大于100"
)
private
String
unitLinkFax
;
/** 选题范围 */
@ApiModelProperty
(
value
=
"选题范围"
,
position
=
1
)
@Length
(
max
=
200
,
message
=
"主要研究领域不能大于200"
)
private
String
subjectScope
;
/** 项目摘要 */
@ApiModelProperty
(
value
=
"项目摘要"
,
position
=
13
)
@Length
(
max
=
600
,
message
=
"项目摘要不能大于600"
)
private
String
projAbstract
;
/** 关键词 */
@ApiModelProperty
(
value
=
"关键词"
,
position
=
26
)
@Length
(
max
=
200
,
message
=
"关键词不能大于200"
)
private
String
projKeywords
;
/** 项目总经费(万元) */
...
...
@@ -170,51 +153,39 @@ public class ComProjectDTO extends BaseDTO {
/** 项目实施目标 */
@ApiModelProperty
(
value
=
"项目实施目标"
,
position
=
28
)
@Length
(
max
=
2147483647
,
message
=
"项目实施目标不能大于2147483647"
)
private
String
researchContent
;
/** 主要技术指标 */
@ApiModelProperty
(
value
=
"主要技术指标"
,
position
=
35
)
@Length
(
max
=
2147483647
,
message
=
"主要技术指标不能大于2147483647"
)
private
String
technologyTarget
;
/** 主要经济指标 */
@ApiModelProperty
(
value
=
"主要经济指标"
,
position
=
35
)
@Length
(
max
=
2147483647
,
message
=
"主要经济指标不能大于2147483647"
)
private
String
economyTarget
;
/** 项目实施中形成的示范基地、中试线、生产线及其规模等 */
@ApiModelProperty
(
value
=
"项目实施中形成的示范基地、中试线、生产线及其规模等"
,
position
=
35
)
@Length
(
max
=
2147483647
,
message
=
"项目实施中形成的示范基地、中试线、生产线及其规模等不能大于2147483647"
)
private
String
achievementTarget
;
/** 科技报告考核指标 */
@ApiModelProperty
(
value
=
"科技报告考核指标"
,
position
=
35
)
@Length
(
max
=
2147483647
,
message
=
"科技报告考核指标不能大于2147483647"
)
private
String
technologyReportsTarget
;
/** 其他应考核的指标 */
@ApiModelProperty
(
value
=
"其他应考核的指标"
,
position
=
35
)
@Length
(
max
=
2147483647
,
message
=
"其他应考核的指标不能大于2147483647"
)
private
String
otherTarget
;
@ApiModelProperty
(
value
=
"项目属性Id"
,
position
=
36
)
@Length
(
max
=
36
,
message
=
"项目属性Id不能大于36"
)
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
)
@Length
(
max
=
65535
,
message
=
"备注不能大于65535"
)
private
String
remark
;
/** 项目完成状态 */
...
...
@@ -261,7 +232,6 @@ public class ComProjectDTO extends BaseDTO {
private
String
fileId
;
/** 附件Id */
@ApiModelProperty
(
value
=
"附件Id"
,
position
=
1
)
@Length
(
max
=
36
,
message
=
"附件Id不能大于36"
)
private
String
downloadId
;
/** 附件名 */
@ApiModelProperty
(
value
=
"附件名"
,
position
=
6
)
...
...
@@ -275,7 +245,6 @@ public class ComProjectDTO extends BaseDTO {
private
String
appUnitName
;
/** 注册单位类型 */
@ApiModelProperty
(
value
=
"注册单位类型"
,
position
=
12
)
@Length
(
max
=
100
,
message
=
"注册单位类型不能大于100"
)
private
String
unitTypeName
;
/** 项目状态 */
...
...
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