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
0bbfedb7
Commit
0bbfedb7
authored
Dec 26, 2024
by
hezhuozhi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/developer_bw' into developer_bw
parents
baa5e52e
7f3dfb25
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
11 deletions
+10
-11
IcbcWithholdRecordDto.java
.../amos/boot/module/hygf/api/dto/IcbcWithholdRecordDto.java
+7
-9
IcbcWithholdRecordMapper.xml
.../main/resources/mapper/mysql/IcbcWithholdRecordMapper.xml
+1
-1
SurveyInformationServiceImpl.java
...e/hygf/biz/service/impl/SurveyInformationServiceImpl.java
+2
-1
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/IcbcWithholdRecordDto.java
View file @
0bbfedb7
...
...
@@ -55,32 +55,30 @@ public class IcbcWithholdRecordDto extends BaseDto {
/**
* 开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败
*/
@ExcelProperty
(
value
=
"开户状态"
,
index
=
5
)
@ApiModelProperty
(
value
=
"开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败"
)
@ExcelIgnore
@ApiModelProperty
(
value
=
"开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败"
)
private
String
openAccountStatus
;
/**
* 协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认
*/
@ExcelProperty
(
value
=
"协议状态"
,
index
=
6
)
@ApiModelProperty
(
value
=
"协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认"
)
@ExcelIgnore
@ApiModelProperty
(
value
=
"协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认"
)
private
String
protocolStatus
;
@ExcelProperty
(
value
=
"
协议状态"
,
index
=
7
)
@ExcelProperty
(
value
=
"
批次号"
,
index
=
5
)
@ApiModelProperty
(
value
=
"批次号"
)
private
String
batchNo
;
@ExcelProperty
(
value
=
"项目编号"
,
index
=
8
)
@ExcelProperty
(
value
=
"项目编号"
,
index
=
6
)
@ApiModelProperty
(
value
=
"项目编号"
)
private
String
projectId
;
@ExcelProperty
(
value
=
"付款金额
"
,
index
=
9
)
@ExcelProperty
(
value
=
"付款金额
(元)"
,
index
=
7
)
@ApiModelProperty
(
value
=
"付款金额"
)
private
double
paymentAmount
;
@ExcelProperty
(
value
=
"代扣状态"
,
index
=
10
)
@ExcelProperty
(
value
=
"代扣状态"
,
index
=
8
)
@ApiModelProperty
(
value
=
"代扣状态"
)
private
String
withholdStatus
;
...
...
@@ -88,7 +86,7 @@ public class IcbcWithholdRecordDto extends BaseDto {
@ApiModelProperty
(
value
=
"上传时间"
)
private
Date
withholdTime
;
@ExcelProperty
(
value
=
"缴费时间"
,
index
=
11
)
@ExcelProperty
(
value
=
"缴费时间"
,
index
=
9
)
@ApiModelProperty
(
value
=
"缴费时间"
)
private
Date
paymentTime
;
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/IcbcWithholdRecordMapper.xml
View file @
0bbfedb7
...
...
@@ -121,7 +121,7 @@
AND re.amos_user_id = #{dto.amosUserId}
</if>
<if
test=
"dto.batchNo != null and dto.batchNo != ''"
>
AND re.batch_no
= #{dto.batchNo}
AND re.batch_no
like concat('%',#{dto.batchNo},'%')
</if>
<if
test=
"dto.withholdStatus != null and dto.withholdStatus != ''"
>
AND re.withhold_status = #{dto.withholdStatus}
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/SurveyInformationServiceImpl.java
View file @
0bbfedb7
...
...
@@ -294,7 +294,8 @@ public class SurveyInformationServiceImpl
}
peasantHousehold
.
setPermanentAddressName
(
permanentAddressName
.
substring
(
0
,
permanentAddressName
.
length
()
-
1
));
powerStation
.
setProjectAddress
(
projectAddressName
.
substring
(
0
,
projectAddressName
.
length
()
-
1
));
powerStationMapper
.
updateById
(
powerStation
);
if
(
OPERATION_TYPE_SUBMIT
.
equals
(
operationType
))
{
// peasantHousehold.setSurveyOrNot(1);
}
else
if
(
OPERATION_TYPE_APPLY
.
equals
(
operationType
))
{
...
...
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