订单详情添加人脸ID

This commit is contained in:
2024-12-18 15:07:40 +08:00
parent d5cef538d1
commit 19e9d547fa
11 changed files with 143 additions and 2 deletions

View File

@ -0,0 +1,14 @@
package com.ycwl.basic.mapper;
import com.ycwl.basic.model.pc.payment.entity.PaymentEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface PaymentMapper {
Long addGetId(PaymentEntity entity);
PaymentEntity findByOutTradeNo(@Param("outTradeNo") String outTradeNo);
int update(PaymentEntity entity);
int setOutTradeNo(@Param("id") Long id, @Param("outTradeNo") String outTradeNo);
int setPaid(Long paymentId);
}

View File

@ -0,0 +1,14 @@
package com.ycwl.basic.mapper;
import com.ycwl.basic.model.pc.refund.entity.RefundEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface RefundMapper {
Long addGetId(RefundEntity entity);
RefundEntity findByOutRefundNo(String outRefundNo);
int update(RefundEntity entity);
int setRefundNo(@Param("id") Long id, @Param("outRefundNo") String outRefundNo);
int setRefunded(Long id);
}