2022-05-27 11:12:54 +08:00
|
|
|
package com.ghy.payment.mapper;
|
|
|
|
|
|
2022-05-31 20:55:09 +08:00
|
|
|
import com.ghy.common.adapay.model.PaymentDTO;
|
2022-05-27 11:12:54 +08:00
|
|
|
import com.huifu.adapay.model.Payment;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 支付记录 Mapper
|
|
|
|
|
*
|
|
|
|
|
* @author HH 2022/5/27
|
|
|
|
|
*/
|
|
|
|
|
public interface PaymentMapper {
|
|
|
|
|
|
|
|
|
|
int insertPayment(Payment payment);
|
|
|
|
|
|
|
|
|
|
int updatePayment(Payment payment);
|
2022-05-31 20:55:09 +08:00
|
|
|
|
|
|
|
|
PaymentDTO selectById(String id);
|
2022-05-27 11:12:54 +08:00
|
|
|
}
|