Merge branch 'adapay' into dev

# Conflicts:
#	jsowell-admin/src/main/java/com/jsowell/api/uniapp/PayController.java
This commit is contained in:
2023-08-14 11:31:03 +08:00
15 changed files with 719 additions and 168 deletions

View File

@@ -1,12 +1,14 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.MemberAdapayRecord;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface MemberAdapayRecordMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
@@ -14,6 +16,7 @@ public interface MemberAdapayRecordMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
@@ -21,6 +24,7 @@ public interface MemberAdapayRecordMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
@@ -33,4 +37,10 @@ public interface MemberAdapayRecordMapper {
int insertOrUpdate(MemberAdapayRecord record);
int insertOrUpdateSelective(MemberAdapayRecord record);
List<MemberAdapayRecord> selectAdapayRecordList(@Param("memberId") String memberId, @Param("scenarioType") String scenarioType);
MemberAdapayRecord selectByPaymentId(@Param("paymentId") String paymentId);
List<MemberAdapayRecord> selectAvailableBalance(@Param("memberId") String memberId);
}