Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
dbc9b31a
Commit
dbc9b31a
authored
May 06, 2023
by
caotao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
场站导出dto调整
parent
ffdf725f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
25 deletions
+22
-25
ExStationBasicDto.java
...oin/amos/boot/module/jxiop/api/dto/ExStationBasicDto.java
+22
-25
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/com/yeejoin/amos/boot/module/jxiop/api/dto/ExStationBasicDto.java
View file @
dbc9b31a
...
...
@@ -21,41 +21,38 @@ public class ExStationBasicDto {
@ExcelProperty
(
value
=
"场站编号"
,
index
=
1
)
@ApiModelProperty
(
value
=
"场站编号"
)
private
String
stationCode
;
@ExplicitConstraint
(
indexNum
=
2
,
sourceClass
=
CommonExplicitConstraint
.
class
,
method
=
"getstationType"
)
//固定下拉内容
@ExcelProperty
(
value
=
"场站类型"
,
index
=
2
)
@ApiModelProperty
(
value
=
"场站类型"
)
private
String
stationType
;
@ExplicitConstraint
(
indexNum
=
3
,
source
=
{
"开发"
,
"策划"
,
"在建"
,
"停建"
,
"完工"
,
"结算"
,
"尾款"
,
"关闭"
,
"终止"
,
"运维"
,
"测试"
})
//固定下拉内容
@ExcelProperty
(
value
=
"项目状态"
,
index
=
3
)
@ExplicitConstraint
(
indexNum
=
2
,
source
=
{
"开发"
,
"策划"
,
"在建"
,
"停建"
,
"完工"
,
"结算"
,
"尾款"
,
"关闭"
,
"终止"
,
"运维"
,
"测试"
})
//固定下拉内容
@ExcelProperty
(
value
=
"项目状态"
,
index
=
2
)
@ApiModelProperty
(
value
=
"项目状态"
)
private
String
stationFlag
;
@ExcelProperty
(
value
=
"地址"
,
index
=
4
)
@ApiModelProperty
(
"地址"
)
private
String
address
;
@ExcelProperty
(
value
=
"站长"
,
index
=
5
)
@ExplicitConstraint
(
indexNum
=
3
,
sourceClass
=
CommonExplicitConstraint
.
class
,
method
=
"getstationType"
)
//固定下拉内容
@ExcelProperty
(
value
=
"场站类型"
,
index
=
3
)
@ApiModelProperty
(
value
=
"场站类型"
)
private
String
stationType
;
@ExcelProperty
(
value
=
"站长"
,
index
=
4
)
@ApiModelProperty
(
value
=
"站长"
)
private
String
stationMasterName
;
@ExcelProperty
(
value
=
"
紧急联系方式(手机)"
,
index
=
6
)
@ApiModelProperty
(
value
=
"
紧急联系方式(手机)
"
)
@ExcelProperty
(
value
=
"
手机号码"
,
index
=
5
)
@ApiModelProperty
(
value
=
"
手机号码
"
)
private
String
mobilePhone
;
@ExcelProperty
(
value
=
"电话"
,
index
=
7
)
@ApiModelProperty
(
value
=
"电话"
)
private
String
phone
;
@ExcelProperty
(
value
=
"邮箱"
,
index
=
8
)
@ExcelProperty
(
value
=
"邮箱"
,
index
=
6
)
@ApiModelProperty
(
value
=
"邮箱"
)
private
String
email
;
@ExcelProperty
(
value
=
"运维
开始时间"
,
index
=
9
)
@ApiModelProperty
(
value
=
"运维
开始
时间"
)
@ExcelProperty
(
value
=
"运维
时间"
,
index
=
7
)
@ApiModelProperty
(
value
=
"运维时间"
)
private
String
devopsTime
;
@ExcelProperty
(
value
=
"
业主单位"
,
index
=
10
)
@ApiModelProperty
(
value
=
"
业主
单位"
)
@ExcelProperty
(
value
=
"
运维单位"
,
index
=
8
)
@ApiModelProperty
(
value
=
"
运维
单位"
)
private
String
ownerUnit
;
@ExcelProperty
(
value
=
"
简介"
,
index
=
11
)
@ApiModelProperty
(
value
=
"简介
"
)
private
String
briefIntroduction
;
@ExplicitConstraint
(
indexNum
=
1
2
,
sourceClass
=
CommonExplicitConstraint
.
class
,
method
=
"getArea"
)
//固定下拉内容
@ExcelProperty
(
value
=
"所属片区"
,
index
=
1
2
)
@ExcelProperty
(
value
=
"
场站地址"
,
index
=
9
)
@ApiModelProperty
(
"场站地址
"
)
private
String
address
;
@ExplicitConstraint
(
indexNum
=
1
0
,
sourceClass
=
CommonExplicitConstraint
.
class
,
method
=
"getArea"
)
//固定下拉内容
@ExcelProperty
(
value
=
"所属片区"
,
index
=
1
0
)
@ApiModelProperty
(
value
=
"所属片区"
)
private
String
area
;
@ExcelProperty
(
value
=
"场站简介"
,
index
=
11
)
@ApiModelProperty
(
value
=
"场站简介"
)
private
String
briefIntroduction
;
}
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