--内购支付

This commit is contained in:
yc13649764453
2023-05-25 09:06:04 +08:00
parent 5ed3e9818a
commit 12af476515
14 changed files with 1026 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.peanut.modules.pay.IOSPay.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.pay.IOSPay.model.entities.IosPayOrderEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@Repository
@Mapper
public interface PayIOSOrderMapper extends BaseMapper<IosPayOrderEntity> {
}

View File

@@ -0,0 +1,13 @@
package com.peanut.modules.pay.IOSPay.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.pay.IOSPay.model.entities.IosPayOrderEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@Repository
@Mapper
public interface PayPaymentOrderMapper extends BaseMapper<IosPayOrderEntity> {
}