意向加盟合同审核结果回调
This commit is contained in:
@@ -22,6 +22,10 @@ public interface IntentAgreementMapper {
|
||||
*/
|
||||
SigningBaseInfoDO judge(@Param("request") IntentAgreementSubmitRequest request);
|
||||
|
||||
void updateAuditId(@Param("lineId") Long id,
|
||||
@Param("auditId") Long auditId);
|
||||
|
||||
|
||||
/**
|
||||
* 查询签约信息
|
||||
* @param lineIds
|
||||
|
||||
@@ -53,5 +53,9 @@ public interface LineInfoMapper extends Mapper<LineInfoDO> {
|
||||
*/
|
||||
List<LineInfoDO> publicLineList(@Param("request") PublicLineListRequest publicLineListRequest);
|
||||
|
||||
/**
|
||||
* 根据lineId判断是更新还是插入
|
||||
* @param lineInfoParam
|
||||
*/
|
||||
void insertOrUpdate(@Param("param") LineInfoDO lineInfoParam);
|
||||
}
|
||||
@@ -76,6 +76,11 @@
|
||||
<if test="request.businessLicenseAddress != null">#{request.businessLicenseAddress},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<update id="updateAuditId">
|
||||
update xfsg_signing_base_info
|
||||
set audit_id = #{auditId}
|
||||
where line_id = #{lineId}
|
||||
</update>
|
||||
<select id="selectByPartnerIdOrLineId" resultType="com.cool.store.entity.SigningBaseInfoDO">
|
||||
select
|
||||
<include refid="Base_Column_List"/>
|
||||
|
||||
Reference in New Issue
Block a user