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
bbb4140a
Commit
bbb4140a
authored
Nov 11, 2024
by
hezhuozhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复电站导出
parent
1636c9f4
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
31 additions
and
30 deletions
+31
-30
BwysServiceImpl.java
...amos/boot/module/hygf/biz/excel/impl/BwysServiceImpl.java
+2
-2
DzbtgServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/DzbtgServiceImpl.java
+1
-1
DzjxzServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/DzjxzServiceImpl.java
+1
-1
DzwcServiceImpl.java
...amos/boot/module/hygf/biz/excel/impl/DzwcServiceImpl.java
+1
-1
FhdfhServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/FhdfhServiceImpl.java
+1
-1
FhyfhServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/FhyfhServiceImpl.java
+1
-1
RzdfkServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/RzdfkServiceImpl.java
+3
-3
RzdshServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/RzdshServiceImpl.java
+3
-3
RzwtgServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/RzwtgServiceImpl.java
+3
-3
RzyfkServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/RzyfkServiceImpl.java
+3
-3
SgysServiceImpl.java
...amos/boot/module/hygf/biz/excel/impl/SgysServiceImpl.java
+4
-3
TrdfkServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/TrdfkServiceImpl.java
+1
-1
TrdtsServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/TrdtsServiceImpl.java
+1
-1
TrwtgServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/TrwtgServiceImpl.java
+1
-1
TryfkServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/TryfkServiceImpl.java
+1
-1
TrytsServiceImpl.java
...mos/boot/module/hygf/biz/excel/impl/TrytsServiceImpl.java
+1
-1
YsshServiceImpl.java
...amos/boot/module/hygf/biz/excel/impl/YsshServiceImpl.java
+2
-2
BusinessFieldServiceImpl.java
...odule/hygf/biz/service/impl/BusinessFieldServiceImpl.java
+1
-1
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/BwysServiceImpl.java
View file @
bbb4140a
...
...
@@ -52,11 +52,11 @@ public class BwysServiceImpl implements IExportPageService {
}
}
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"type"
,
"1"
);
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
}
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getBwysStationId
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/DzbtgServiceImpl.java
View file @
bbb4140a
...
...
@@ -19,10 +19,10 @@ public class DzbtgServiceImpl implements IExportPageService {
@Override
public
List
<
String
>
getStationId
(
Map
<
String
,
Object
>
filters
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"processStatus"
,
PowerStationProcessStateEnum
.
不通过
.
getName
());
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
}
map
.
put
(
"processStatus"
,
PowerStationProcessStateEnum
.
不通过
.
getName
());
return
businessFieldMapper
.
getDzStationIdByProcessStatus
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/DzjxzServiceImpl.java
View file @
bbb4140a
...
...
@@ -15,10 +15,10 @@ public class DzjxzServiceImpl implements IExportPageService {
@Override
public
List
<
String
>
getStationId
(
Map
<
String
,
Object
>
filters
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"processStatus"
,
PowerStationProcessStateEnum
.
进行中
.
getName
());
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
}
map
.
put
(
"processStatus"
,
PowerStationProcessStateEnum
.
进行中
.
getName
());
return
businessFieldMapper
.
getDzStationIdByProcessStatus
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/DzwcServiceImpl.java
View file @
bbb4140a
...
...
@@ -15,10 +15,10 @@ public class DzwcServiceImpl implements IExportPageService {
@Override
public
List
<
String
>
getStationId
(
Map
<
String
,
Object
>
filters
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"processStatus"
,
PowerStationProcessStateEnum
.
完成
.
getName
());
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
}
map
.
put
(
"processStatus"
,
PowerStationProcessStateEnum
.
完成
.
getName
());
return
businessFieldMapper
.
getDzStationIdByProcessStatus
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/FhdfhServiceImpl.java
View file @
bbb4140a
...
...
@@ -18,11 +18,11 @@ public class FhdfhServiceImpl implements IExportPageService {
@Override
public
List
<
String
>
getStationId
(
Map
<
String
,
Object
>
filters
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"preparationMoneyState"
,
"0"
);
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
map
.
put
(
"regionalCompaniesSeq"
,
filters
.
get
(
"regionalcompaniesSeq"
));
}
map
.
put
(
"preparationMoneyState"
,
"0"
);
return
businessFieldMapper
.
getFhStationId
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/FhyfhServiceImpl.java
View file @
bbb4140a
...
...
@@ -17,11 +17,11 @@ public class FhyfhServiceImpl implements IExportPageService {
@Override
public
List
<
String
>
getStationId
(
Map
<
String
,
Object
>
filters
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"preparationMoneyState"
,
"1"
);
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
map
.
put
(
"regionalCompaniesSeq"
,
filters
.
get
(
"regionalcompaniesSeq"
));
}
map
.
put
(
"preparationMoneyState"
,
"1"
);
return
businessFieldMapper
.
getFhStationId
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/RzdfkServiceImpl.java
View file @
bbb4140a
...
...
@@ -25,13 +25,13 @@ public class RzdfkServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"审核通过"
;
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
Long
sequenceNbr
=
reginParams
.
getCompany
().
getSequenceNbr
();
params
.
put
(
"financingCompaniesSeq"
,
String
.
valueOf
(
sequenceNbr
));
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"2"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/RzdshServiceImpl.java
View file @
bbb4140a
...
...
@@ -25,13 +25,13 @@ public class RzdshServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"待融资审核"
;
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
Long
sequenceNbr
=
reginParams
.
getCompany
().
getSequenceNbr
();
params
.
put
(
"financingCompaniesSeq"
,
String
.
valueOf
(
sequenceNbr
));
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"2"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/RzwtgServiceImpl.java
View file @
bbb4140a
...
...
@@ -25,13 +25,13 @@ public class RzwtgServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"审核不通过,重新验收"
;
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
Long
sequenceNbr
=
reginParams
.
getCompany
().
getSequenceNbr
();
params
.
put
(
"financingCompaniesSeq"
,
String
.
valueOf
(
sequenceNbr
));
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"2"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/RzyfkServiceImpl.java
View file @
bbb4140a
...
...
@@ -25,13 +25,13 @@ public class RzyfkServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"已放款,放款完成"
;
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
Long
sequenceNbr
=
reginParams
.
getCompany
().
getSequenceNbr
();
params
.
put
(
"financingCompaniesSeq"
,
String
.
valueOf
(
sequenceNbr
));
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"2"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/SgysServiceImpl.java
View file @
bbb4140a
...
...
@@ -33,6 +33,9 @@ public class SgysServiceImpl implements IExportPageService {
ReginParams
reginParams
=
JSONObject
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
List
<
String
>
workOrderPowerStationNodes
=
new
ArrayList
<>();
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
}
List
<
Long
>
roleIds
=
new
ArrayList
<>();
for
(
Long
aLong
:
reginParams
.
getUserModel
().
getOrgRoleSeqs
().
keySet
())
{
List
<
Long
>
longs
=
reginParams
.
getUserModel
().
getOrgRoleSeqs
().
get
(
aLong
);
...
...
@@ -54,9 +57,7 @@ public class SgysServiceImpl implements IExportPageService {
roleIds
.
addAll
(
longs
);
}
map
.
put
(
"workOrderPowerStationNodes"
,
workOrderPowerStationNodes
);
if
(
Objects
.
nonNull
(
filters
))
{
map
.
putAll
(
filters
);
}
map
.
put
(
"type"
,
"3"
);
return
businessFieldMapper
.
getSgysStationId
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/TrdfkServiceImpl.java
View file @
bbb4140a
...
...
@@ -23,10 +23,10 @@ public class TrdfkServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
String
status
=
"审核通过"
;
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"审核通过"
;
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/TrdtsServiceImpl.java
View file @
bbb4140a
...
...
@@ -25,10 +25,10 @@ public class TrdtsServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
String
status
=
"待推送"
;
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"待推送"
;
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/TrwtgServiceImpl.java
View file @
bbb4140a
...
...
@@ -23,10 +23,10 @@ public class TrwtgServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
String
status
=
"审核不通过,重新验收"
;
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"审核不通过,重新验收"
;
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/TryfkServiceImpl.java
View file @
bbb4140a
...
...
@@ -23,10 +23,10 @@ public class TryfkServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
String
status
=
"放款完成"
;
if
(
Objects
.
nonNull
(
filters
))
{
params
.
putAll
(
filters
);
}
String
status
=
"放款完成"
;
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/TrytsServiceImpl.java
View file @
bbb4140a
...
...
@@ -23,10 +23,10 @@ public class TrytsServiceImpl implements IExportPageService {
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
String
status
=
"待融资审核"
;
if
(
Objects
.
nonNull
(
filters
)){
params
.
putAll
(
filters
);
}
String
status
=
"待融资审核"
;
params
.
put
(
"status"
,
Objects
.
isNull
(
filters
.
get
(
"status"
))
?
Arrays
.
asList
(
status
.
split
(
","
))
:
Arrays
.
asList
(
filters
.
get
(
"status"
)));
params
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getTrStationIdByStatus
(
params
,
amosOrgCodes
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/excel/impl/YsshServiceImpl.java
View file @
bbb4140a
...
...
@@ -57,11 +57,11 @@ public class YsshServiceImpl implements IExportPageService {
}
}
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"type"
,
"1"
);
if
(
Objects
.
nonNull
(
filters
)){
map
.
putAll
(
filters
);
}
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"type"
,
"1"
);
return
businessFieldMapper
.
getYsshStationId
(
map
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/BusinessFieldServiceImpl.java
View file @
bbb4140a
...
...
@@ -94,7 +94,7 @@ public class BusinessFieldServiceImpl extends BaseService<BusinessFieldDto, Hygf
headerStyle
.
setFillForegroundColor
(
IndexedColors
.
SKY_BLUE
.
getIndex
());
// 背景色
headerStyle
.
setFillPattern
(
FillPatternType
.
SOLID_FOREGROUND
);
// 填充模式
// 设置居中对齐
headerStyle
.
setAlignment
(
HorizontalAlignment
.
CENTER
);
headerStyle
.
setAlignment
(
HorizontalAlignment
.
LEFT
);
headerStyle
.
setVerticalAlignment
(
VerticalAlignment
.
CENTER
);
// 设置表头每个单元格的样式
for
(
int
i
=
0
;
i
<
headerRow
.
getPhysicalNumberOfCells
();
i
++)
{
...
...
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