Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
8timerv2
8timerapiv200
Commits
6b77f156
Commit
6b77f156
authored
2 years ago
by
翁国栋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
投保
parent
476ab1ad
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
94 additions
and
39 deletions
+94
-39
sql/V2.3.sql
+7
-0
src/main/java/cn/timer/api/bean/insure/InsureApplicant.java
+8
-0
src/main/java/cn/timer/api/bean/insure/InsurePolicy.java
+2
-0
src/main/java/cn/timer/api/controller/insure/CallBackContorll.java
+0
-0
src/main/java/cn/timer/api/controller/insure/InsureContorll.java
+0
-0
src/main/java/cn/timer/api/controller/insure/InsurePayController.java
+0
-11
src/main/java/cn/timer/api/controller/insure/InsurePlanController.java
+9
-2
src/main/java/cn/timer/api/controller/insure/InsureProductController.java
+0
-1
src/main/resources/application-dev.yml
+9
-7
src/main/resources/application-test.yml
+10
-8
src/main/resources/mapping/insure/InsureApplicantMapper.xml
+32
-4
src/main/resources/mapping/insure/InsurePolicyMapper.xml
+16
-5
src/main/resources/mapping/insure/InsureProductPlanMapper.xml
+1
-1
No files found.
sql/V2.3.sql
View file @
6b77f156
...
@@ -37,3 +37,10 @@ CREATE TABLE ` yggl_main_importLog ` (
...
@@ -37,3 +37,10 @@ CREATE TABLE ` yggl_main_importLog ` (
ALTER TABLE `
timer_test
`.`
insure_user
`
ALTER TABLE `
timer_test
`.`
insure_user
`
MODIFY COLUMN `
apply_type
` int(11) NULL DEFAULT NULL COMMENT '申请类型:1新增 2投保 3批改' AFTER `
replace_trans_id
`;
MODIFY COLUMN `
apply_type
` int(11) NULL DEFAULT NULL COMMENT '申请类型:1新增 2投保 3批改' AFTER `
replace_trans_id
`;
ALTER TABLE `
timer_test
`.`
insure_applicant
`
ADD COLUMN `
appid
` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL AFTER `
applicantephone
`,
ADD COLUMN `
secret
` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL AFTER `
appid
`,
ADD COLUMN `
appidq
` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL AFTER `
secret
`,
ADD COLUMN `
secretq
` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL AFTER `
appidq
`;
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/insure/InsureApplicant.java
View file @
6b77f156
...
@@ -134,6 +134,14 @@ public class InsureApplicant extends Model<InsureApplicant> {
...
@@ -134,6 +134,14 @@ public class InsureApplicant extends Model<InsureApplicant> {
private
Integer
orgCode
;
private
Integer
orgCode
;
@ApiModelProperty
(
value
=
"银行账号"
)
@ApiModelProperty
(
value
=
"银行账号"
)
private
String
applicantCorporateBankAccount
;
private
String
applicantCorporateBankAccount
;
@ApiModelProperty
(
value
=
"投保appid"
)
private
String
appid
;
@ApiModelProperty
(
value
=
"投保secret"
)
private
String
secret
;
@ApiModelProperty
(
value
=
"投保全appid"
)
private
String
appidq
;
@ApiModelProperty
(
value
=
"保全secret"
)
private
String
secretq
;
/**
/**
* 设置:id
* 设置:id
...
...
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/insure/InsurePolicy.java
View file @
6b77f156
...
@@ -126,5 +126,7 @@ public class InsurePolicy extends Model<InsurePolicy> {
...
@@ -126,5 +126,7 @@ public class InsurePolicy extends Model<InsurePolicy> {
*/
*/
private
Integer
payId
;
private
Integer
payId
;
private
String
serialNumber
;
}
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/insure/CallBackContorll.java
View file @
6b77f156
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/insure/InsureContorll.java
View file @
6b77f156
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/insure/InsurePayController.java
View file @
6b77f156
...
@@ -31,17 +31,6 @@ public class InsurePayController{
...
@@ -31,17 +31,6 @@ public class InsurePayController{
@Autowired
@Autowired
private
InsureUserMapper
insureUserMapper
;
private
InsureUserMapper
insureUserMapper
;
@Value
(
"${insure.appid}"
)
private
String
appid
;
@Value
(
"${insure.secret}"
)
private
String
secret
;
@Value
(
"${insure.appidq}"
)
private
String
appidq
;
@Value
(
"${insure.secretq}"
)
private
String
secretq
;
/*投保支付*/
@Value
(
"${insure.toPayUrl}"
)
private
String
toPayUrl
;
@GetMapping
(
value
=
"/cancelPayment"
)
@GetMapping
(
value
=
"/cancelPayment"
)
@ApiOperation
(
value
=
"取消支付"
,
httpMethod
=
"GET"
,
notes
=
"取消支付"
)
@ApiOperation
(
value
=
"取消支付"
,
httpMethod
=
"GET"
,
notes
=
"取消支付"
)
...
...
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/insure/InsurePlanController.java
View file @
6b77f156
...
@@ -65,6 +65,13 @@ public class InsurePlanController {
...
@@ -65,6 +65,13 @@ public class InsurePlanController {
}
}
return
ResultUtil
.
error
(
"保存失败"
);
return
ResultUtil
.
error
(
"保存失败"
);
}
}
@PostMapping
(
value
=
"/deletePlan"
)
;
@ApiOperation
(
value
=
"删除产品方案"
,
httpMethod
=
"POST"
,
notes
=
"删除产品方案"
)
public
Result
<
Object
>
deletePlan
(
@RequestBody
InsureProductPlan
insureProductPlan
)
{
insureProductPlan
.
setDeleteFlag
(
1
);
if
(
insureProductPlan
.
updateById
())
{
return
ResultUtil
.
data
(
"删除产品方案成功"
);
}
return
ResultUtil
.
error
(
"添加产品失败"
);
}
}
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/insure/InsureProductController.java
View file @
6b77f156
...
@@ -52,5 +52,4 @@ public class InsureProductController {
...
@@ -52,5 +52,4 @@ public class InsureProductController {
return
ResultUtil
.
error
(
"添加产品失败"
);
return
ResultUtil
.
error
(
"添加产品失败"
);
}
}
;
}
}
This diff is collapsed.
Click to expand it.
src/main/resources/application-dev.yml
View file @
6b77f156
...
@@ -283,9 +283,9 @@ h5:
...
@@ -283,9 +283,9 @@ h5:
url
:
'
http://javays.com'
url
:
'
http://javays.com'
insure
:
insure
:
#投保 appid
#投保 appid
appid
:
'
1002303100602312445
'
# appid: '1002305000010094276
'
#投保 secret
#
#投保 secret
secret
:
'
acb329868c31d5b3ba03de40dac13dd9
'
# secret: '51e405c74bd9514e1955a92520786286
'
#投保上传文件
#投保上传文件
uploadUrl
:
'
http://sandbox.portal.unistar-ins.com/service/Home/Index/fileUpload'
uploadUrl
:
'
http://sandbox.portal.unistar-ins.com/service/Home/Index/fileUpload'
#投保立即出单
#投保立即出单
...
@@ -300,11 +300,13 @@ insure:
...
@@ -300,11 +300,13 @@ insure:
toPayUrl
:
'
http://sandbox.portal.unistar-ins.com/mall/Home/Pay/toPay'
toPayUrl
:
'
http://sandbox.portal.unistar-ins.com/mall/Home/Pay/toPay'
#保全支付
#保全支付
batchToPayUrl
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/ImportPay/set_import_pay'
batchToPayUrl
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/ImportPay/set_import_pay'
#预付款出单接口
issue
:
'
http://sandbox.portal.unistar-ins.com/cps/Labor/Policy/issue'
#保全appid
#保全appid
appidq
:
'
1000115041006006938'
#
appidq: '1000115041006006938'
#保全 secret
#
#保全 secret
secretq
:
'
6ba1bf4aa0bd14368c95ff0b9934a17b'
#
secretq: '6ba1bf4aa0bd14368c95ff0b9934a17b'
#保全上传文件
#保全上传文件
uploadUrlq
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/Index/file_upload'
uploadUrlq
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/Index/file_upload'
#保全申请
#保全申请
...
@@ -313,7 +315,7 @@ insure:
...
@@ -313,7 +315,7 @@ insure:
cancelPayment
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/OrderImport/order_import_set'
cancelPayment
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/OrderImport/order_import_set'
# base_api_url
# base_api_url
BASE_API_URL
:
'
http
://o49t563035.q
icp.vip'
BASE_API_URL
:
'
http
s://u495v63035.o
icp.vip'
#支付回调
#支付回调
pay_page
:
'
http://localhost:9527'
pay_page
:
'
http://localhost:9527'
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/application-test.yml
View file @
6b77f156
...
@@ -254,10 +254,10 @@ wxgzh:
...
@@ -254,10 +254,10 @@ wxgzh:
encodingAesKey
:
'
chAbt69dLAtk8HH0oGMuZwHzK2SuhnxZI5Jbzc4nNzX'
encodingAesKey
:
'
chAbt69dLAtk8HH0oGMuZwHzK2SuhnxZI5Jbzc4nNzX'
insure
:
insure
:
#投保 appid
#
#投保 appid
appid
:
'
1002303100602312445'
#
appid: '1002303100602312445'
#投保 secret
#
#投保 secret
secret
:
'
acb329868c31d5b3ba03de40dac13dd9'
#
secret: 'acb329868c31d5b3ba03de40dac13dd9'
#投保上传文件
#投保上传文件
uploadUrl
:
'
http://sandbox.portal.unistar-ins.com/service/Home/Index/fileUpload'
uploadUrl
:
'
http://sandbox.portal.unistar-ins.com/service/Home/Index/fileUpload'
#投保立即出单
#投保立即出单
...
@@ -272,11 +272,13 @@ insure:
...
@@ -272,11 +272,13 @@ insure:
toPayUrl
:
'
http://sandbox.portal.unistar-ins.com/mall/Home/Pay/toPay'
toPayUrl
:
'
http://sandbox.portal.unistar-ins.com/mall/Home/Pay/toPay'
#保全支付
#保全支付
batchToPayUrl
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/ImportPay/set_import_pay'
batchToPayUrl
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/ImportPay/set_import_pay'
#预付款出单接口
issue
:
'
http://sandbox.portal.unistar-ins.com/cps/Labor/Policy/issue'
#保全appid
#
#保全appid
appidq
:
'
1000115041006006938'
#
appidq: '1000115041006006938'
#保全 secret
#
#保全 secret
secretq
:
'
6ba1bf4aa0bd14368c95ff0b9934a17b'
#
secretq: '6ba1bf4aa0bd14368c95ff0b9934a17b'
#保全上传文件
#保全上传文件
uploadUrlq
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/Index/file_upload'
uploadUrlq
:
'
http://sandbox.portal.unistar-ins.com/fuli/Home/Index/file_upload'
#保全申请
#保全申请
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/mapping/insure/InsureApplicantMapper.xml
View file @
6b77f156
...
@@ -24,6 +24,10 @@
...
@@ -24,6 +24,10 @@
<result
property=
"currency"
column=
"currency"
/>
<result
property=
"currency"
column=
"currency"
/>
<result
property=
"applicantInvoicedAmount"
column=
"applicant_invoiced_amount"
/>
<result
property=
"applicantInvoicedAmount"
column=
"applicant_invoiced_amount"
/>
<result
property=
"applicantCorporateBankAccount"
column=
"applicant_corporate_bank_account"
/>
<result
property=
"applicantCorporateBankAccount"
column=
"applicant_corporate_bank_account"
/>
<result
property=
"appid"
column=
"appid"
/>
<result
property=
"secret"
column=
"secret"
/>
<result
property=
"appidq"
column=
"appidq"
/>
<result
property=
"secretq"
column=
"secretq"
/>
</resultMap>
</resultMap>
<select
id=
"queryObject"
resultType=
"cn.timer.api.bean.insure.InsureApplicant"
>
<select
id=
"queryObject"
resultType=
"cn.timer.api.bean.insure.InsureApplicant"
>
...
@@ -147,7 +151,11 @@
...
@@ -147,7 +151,11 @@
`trans_id`,
`trans_id`,
`currency`,
`currency`,
`applicant_invoiced_amount`,
`applicant_invoiced_amount`,
`applicant_corporate_bank_account`)
`applicant_corporate_bank_account`,
`appid`,
`secret`,
`appidq`,
`secretq`)
values (#{applicantEName},
values (#{applicantEName},
#{applicantEAddress},
#{applicantEAddress},
#{applicantEmployeeList},
#{applicantEmployeeList},
...
@@ -164,7 +172,11 @@
...
@@ -164,7 +172,11 @@
#{applicantType},
#{applicantType},
#{transId},
#{transId},
#{currency},
#{currency},
#{applicantCorporateBankAccount})
#{applicantCorporateBankAccount},
#{appid},
#{secret},
#{appidq},
#{secretq})
</insert>
</insert>
<insert
id=
"saveSelective"
parameterType=
"cn.timer.api.bean.insure.InsureApplicant"
useGeneratedKeys=
"true"
<insert
id=
"saveSelective"
parameterType=
"cn.timer.api.bean.insure.InsureApplicant"
useGeneratedKeys=
"true"
...
@@ -189,6 +201,10 @@
...
@@ -189,6 +201,10 @@
<if
test=
"currency != null"
>
,`currency`
</if>
<if
test=
"currency != null"
>
,`currency`
</if>
<if
test=
"applicantInvoicedAmount != null"
>
,`applicant_invoiced_amount`
</if>
<if
test=
"applicantInvoicedAmount != null"
>
,`applicant_invoiced_amount`
</if>
<if
test=
"applicantCorporateBankAccount != null"
>
,`applicant_corporate_bank_account`
</if>
<if
test=
"applicantCorporateBankAccount != null"
>
,`applicant_corporate_bank_account`
</if>
<if
test=
"appid != null"
>
,`appid`
</if>
<if
test=
"secret != null"
>
,`secret`
</if>
<if
test=
"appidq != null"
>
,`appidq`
</if>
<if
test=
"secretq != null"
>
,`secretq`
</if>
)
)
values
values
(
(
...
@@ -209,6 +225,10 @@
...
@@ -209,6 +225,10 @@
<if
test=
"transId != null"
>
,#{transId}
</if>
<if
test=
"transId != null"
>
,#{transId}
</if>
<if
test=
"currency != null"
>
,#{currency}
</if>
<if
test=
"currency != null"
>
,#{currency}
</if>
<if
test=
"applicantCorporateBankAccount != null"
>
,#{applicantCorporateBankAccount}
</if>
<if
test=
"applicantCorporateBankAccount != null"
>
,#{applicantCorporateBankAccount}
</if>
<if
test=
"appid != null"
>
,#{appid}
</if>
<if
test=
"secret != null"
>
,#{secret}
</if>
<if
test=
"appidq != null"
>
,#{appidq}
</if>
<if
test=
"secretq != null"
>
,#{secretq}
</if>
)
)
</insert>
</insert>
...
@@ -233,7 +253,11 @@
...
@@ -233,7 +253,11 @@
`applicant_type`,
`applicant_type`,
`trans_id`,
`trans_id`,
`currency`,
`currency`,
`applicant_invoiced_amount`
`applicant_invoiced_amount`,
`appid`,
`secret`,
`appidq`,
`secretq`
)
)
values
values
<foreach
collection=
"list"
item=
"item"
index=
"index"
separator=
","
>
<foreach
collection=
"list"
item=
"item"
index=
"index"
separator=
","
>
...
@@ -254,7 +278,11 @@
...
@@ -254,7 +278,11 @@
#{item.applicantType},
#{item.applicantType},
#{item.transId},
#{item.transId},
#{item.currency},
#{item.currency},
#{item.applicantInvoicedAmount}
#{item.applicantInvoicedAmount},
#{item.appid},
#{item.secret},
#{item.appidq},
#{item.secretq}
)
)
</foreach>
</foreach>
</insert>
</insert>
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/mapping/insure/InsurePolicyMapper.xml
View file @
6b77f156
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
<result
property=
"updateTime"
column=
"update_time"
/>
<result
property=
"updateTime"
column=
"update_time"
/>
<result
property=
"policyPayType"
column=
"policy_pay_type"
/>
<result
property=
"policyPayType"
column=
"policy_pay_type"
/>
<result
property=
"payId"
column=
"pa_id"
/>
<result
property=
"payId"
column=
"pa_id"
/>
<result
property=
"serialNumber"
column=
"serial_number"
/>
</resultMap>
</resultMap>
<select
id=
"queryObject"
resultType=
"cn.timer.api.bean.insure.InsurePolicy"
>
<select
id=
"queryObject"
resultType=
"cn.timer.api.bean.insure.InsurePolicy"
>
...
@@ -56,6 +57,7 @@
...
@@ -56,6 +57,7 @@
<if
test=
"orgCode != null and orgCode != ''"
>
AND `org_code` = #{orgCode}
</if>
<if
test=
"orgCode != null and orgCode != ''"
>
AND `org_code` = #{orgCode}
</if>
<if
test=
"createTime != null and createTime != ''"
>
AND `create_time` = #{createTime}
</if>
<if
test=
"createTime != null and createTime != ''"
>
AND `create_time` = #{createTime}
</if>
<if
test=
"updateTime != null and updateTime != ''"
>
AND `update_time` = #{updateTime}
</if>
<if
test=
"updateTime != null and updateTime != ''"
>
AND `update_time` = #{updateTime}
</if>
<if
test=
"serialNumber != null and serialNumber != ''"
>
AND `serial_number` = #{serialNumber}
</if>
</where>
</where>
<choose>
<choose>
<when
test=
"sidx != null and sidx.trim() != ''"
>
<when
test=
"sidx != null and sidx.trim() != ''"
>
...
@@ -93,6 +95,7 @@
...
@@ -93,6 +95,7 @@
<if
test=
"orgCode != null and orgCode != ''"
>
AND `org_code` = #{orgCode}
</if>
<if
test=
"orgCode != null and orgCode != ''"
>
AND `org_code` = #{orgCode}
</if>
<if
test=
"createTime != null and createTime != ''"
>
AND `create_time` = #{createTime}
</if>
<if
test=
"createTime != null and createTime != ''"
>
AND `create_time` = #{createTime}
</if>
<if
test=
"updateTime != null and updateTime != ''"
>
AND `update_time` = #{updateTime}
</if>
<if
test=
"updateTime != null and updateTime != ''"
>
AND `update_time` = #{updateTime}
</if>
<if
test=
"serialNumber != null and serialNumber != ''"
>
AND `serial_number` = #{serialNumber}
</if>
</where>
</where>
</select>
</select>
...
@@ -114,7 +117,8 @@
...
@@ -114,7 +117,8 @@
`insure_applicant_id`,
`insure_applicant_id`,
`org_code`,
`org_code`,
`create_time`,
`create_time`,
`update_time`)
`update_time`,
`serial_number`)
values (#{schemeName},
values (#{schemeName},
#{policyDateStart},
#{policyDateStart},
#{policyDateEnd},
#{policyDateEnd},
...
@@ -131,7 +135,8 @@
...
@@ -131,7 +135,8 @@
#{insureApplicantId},
#{insureApplicantId},
#{orgCode},
#{orgCode},
#{createTime},
#{createTime},
#{updateTime})
#{updateTime},
#{serialNumber})
</insert>
</insert>
<insert
id=
"saveSelective"
parameterType=
"cn.timer.api.bean.insure.InsurePolicy"
useGeneratedKeys=
"true"
<insert
id=
"saveSelective"
parameterType=
"cn.timer.api.bean.insure.InsurePolicy"
useGeneratedKeys=
"true"
...
@@ -155,6 +160,7 @@
...
@@ -155,6 +160,7 @@
<if
test=
"orgCode != null"
>
,`org_code`
</if>
<if
test=
"orgCode != null"
>
,`org_code`
</if>
<if
test=
"createTime != null"
>
,`create_time`
</if>
<if
test=
"createTime != null"
>
,`create_time`
</if>
<if
test=
"updateTime != null"
>
,`update_time`
</if>
<if
test=
"updateTime != null"
>
,`update_time`
</if>
<if
test=
"serialNumber != null"
>
,`serial_number`
</if>
)
)
values
values
(
(
...
@@ -175,6 +181,7 @@
...
@@ -175,6 +181,7 @@
<if
test=
"orgCode != null"
>
,#{orgCode}
</if>
<if
test=
"orgCode != null"
>
,#{orgCode}
</if>
<if
test=
"createTime != null"
>
,#{createTime}
</if>
<if
test=
"createTime != null"
>
,#{createTime}
</if>
<if
test=
"updateTime != null"
>
,#{update_time}
</if>
<if
test=
"updateTime != null"
>
,#{update_time}
</if>
<if
test=
"serialNumber != null"
>
,#{serialNumber}
</if>
)
)
</insert>
</insert>
...
@@ -199,7 +206,8 @@
...
@@ -199,7 +206,8 @@
`insure_applicant_id`,
`insure_applicant_id`,
`org_code`,
`org_code`,
`create_time`,
`create_time`,
`update_time`
`update_time`,
`serial_number`
)
)
values
values
<foreach
collection=
"list"
item=
"item"
index=
"index"
separator=
","
>
<foreach
collection=
"list"
item=
"item"
index=
"index"
separator=
","
>
...
@@ -220,7 +228,8 @@
...
@@ -220,7 +228,8 @@
#{item.insureApplicantId},
#{item.insureApplicantId},
#{item.orgCode},
#{item.orgCode},
#{item.createTime},
#{item.createTime},
#{item.updateTime}
#{item.updateTime},
#{item.serialNumber}
)
)
</foreach>
</foreach>
</insert>
</insert>
...
@@ -247,7 +256,9 @@
...
@@ -247,7 +256,9 @@
ip.update_time AS updateTime,
ip.update_time AS updateTime,
ip.`status` as `status`,
ip.`status` as `status`,
ip.org_code as orgCode,
ip.org_code as orgCode,
ip.pay_id as payId
ip.pay_id as payId,
ip.serial_number as serialNumber,
ip.policy_file as policyFile
FROM
FROM
insure_policy ip
insure_policy ip
LEFT JOIN insure_user iu ON iu.policy_id = ip.id
LEFT JOIN insure_user iu ON iu.policy_id = ip.id
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/mapping/insure/InsureProductPlanMapper.xml
View file @
6b77f156
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
ipp.create_time as createTime
ipp.create_time as createTime
from insure_product_plan ipp
from insure_product_plan ipp
LEFT JOIN insure_product ip on ip.id = ipp.product_id
LEFT JOIN insure_product ip on ip.id = ipp.product_id
WHERE ip.id = #{productId}
WHERE ip.id = #{productId}
and delete_flag=0
</select>
</select>
</mapper>
</mapper>
This diff is collapsed.
Click to expand it.
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