Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fit-finance
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fitness-server
fit-finance
Commits
a205d68a
Commit
a205d68a
authored
Nov 28, 2024
by
吴一龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
安心付申请记录增加shopId
parent
1216bba7
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletions
+12
-1
api/src/main/java/com/jiejing/fitness/finance/api/axf/vo/StudioAxfApplyVO.java
+3
-0
repository/src/main/java/com/jiejing/fitness/finance/repository/entity/StudioAxfApply.java
+7
-0
repository/src/main/java/com/jiejing/fitness/finance/repository/mapper/StudioAxfApplyMapper.xml
+1
-1
service/src/main/java/com/jiejing/fitness/finance/service/axf/impl/AxfServiceImpl.java
+1
-0
No files found.
api/src/main/java/com/jiejing/fitness/finance/api/axf/vo/StudioAxfApplyVO.java
View file @
a205d68a
...
...
@@ -108,6 +108,9 @@ public class StudioAxfApplyVO {
@ApiModelProperty
(
value
=
"门头照资源Url"
)
private
String
storeHeadResourceUrl
;
@ApiModelProperty
(
value
=
"蚂蚁门店ID"
)
private
String
shopId
;
@ApiModelProperty
(
value
=
"失败原因"
)
private
String
failMessage
;
...
...
repository/src/main/java/com/jiejing/fitness/finance/repository/entity/StudioAxfApply.java
View file @
a205d68a
...
...
@@ -198,6 +198,11 @@ public class StudioAxfApply implements Serializable {
private
Long
storeHeadResourceId
;
/**
* 蚂蚁门店ID
*/
private
String
shopId
;
/**
* 备注: 失败原因 是否允许为null: YES
*/
private
String
failMessage
;
...
...
@@ -290,6 +295,8 @@ public class StudioAxfApply implements Serializable {
public
static
final
String
STORE_HEAD_RESOURCE_ID
=
"store_head_resource_id"
;
public
static
final
String
SHOP_ID
=
"shop_id"
;
public
static
final
String
FAIL_MESSAGE
=
"fail_message"
;
public
static
final
String
OP_ID
=
"op_id"
;
...
...
repository/src/main/java/com/jiejing/fitness/finance/repository/mapper/StudioAxfApplyMapper.xml
View file @
a205d68a
...
...
@@ -17,7 +17,7 @@
<!-- 通用查询结果列 -->
<sql
id=
"Base_Column_List"
>
id, channel_no, merchant_no, merchant_id, studio_id, brand_id, apply_type, studio_name, merchant_name, short_name, company_type, state, card_no, license_code, license_name, license_type, license_expire_type, license_start_time, license_end_time, legal_name, legal_cert_no, phone, business_province_code, business_province_name, business_city_code, business_city_name, business_district_code, business_district_name, business_address, license_resource_id, store_head_resource_id, fail_message, op_id, op_name, salt, create_time, update_time
id, channel_no, merchant_no, merchant_id, studio_id, brand_id, apply_type, studio_name, merchant_name, short_name, company_type, state, card_no, license_code, license_name, license_type, license_expire_type, license_start_time, license_end_time, legal_name, legal_cert_no, phone, business_province_code, business_province_name, business_city_code, business_city_name, business_district_code, business_district_name, business_address, license_resource_id, store_head_resource_id,
shop_id,
fail_message, op_id, op_name, salt, create_time, update_time
</sql>
<select
id=
"countDistinctStudioId"
resultType=
"java.lang.Integer"
>
select count(distinct studio_id)
...
...
service/src/main/java/com/jiejing/fitness/finance/service/axf/impl/AxfServiceImpl.java
View file @
a205d68a
...
...
@@ -755,6 +755,7 @@ public class AxfServiceImpl implements AxfService {
private
void
doOpenAxfStoreSuccess
(
StudioAxfApply
apply
,
StoreEvent
event
)
{
studioAxfApplyRpService
.
updateById
(
StudioAxfApply
.
builder
().
id
(
apply
.
getId
()).
state
(
AxfStateEnums
.
STORE_SUCCESS
.
getCode
())
.
shopId
(
event
.
getShopId
())
.
updateTime
(
new
Date
()).
build
());
}
...
...
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