处理冲突

This commit is contained in:
shuo.wang
2025-06-04 14:35:28 +08:00
21 changed files with 376 additions and 9 deletions

View File

@@ -96,5 +96,10 @@ public class LinePayDAO {
if (CollectionUtils.isEmpty(linePayDOList)){
return null;
}
return 0;
}
public LinePayDO selectByPaymentReceiptCode(String paymentReceiptCode) {
return linePayMapper.selectByPaymentReceiptCode(paymentReceiptCode);
}
}

View File

@@ -60,6 +60,8 @@ public interface LinePayMapper {
List<LinePayDO>getFranchiseFeePayInfoByShopId(@Param("shopId") Long shopId);
Integer deleteById(@Param("id") Long id,@Param("userId")String userId);
LinePayDO selectByPaymentReceiptCode(@Param("paymentReceiptCode") String paymentReceiptCode);
//数据处理专用0604查询加盟费阶段缴费信息
List<LinePayDO> getDateHandler();

View File

@@ -396,5 +396,10 @@
<update id="deleteById">
update xfsg_line_pay set deleted = 1 ,update_time = now(),update_user_id = #{userId} where id = #{id}
</update>
<select id="selectByPaymentReceiptCode" resultType="com.cool.store.entity.LinePayDO">
select * from xfsg_line_pay where deleted = 0 and payment_receipt_code = #{paymentReceiptCode} and pay_business_type = 1 order by create_time desc
</select>
<update id="dataUpdateLinePay"></update>
</mapper>
</mapper>