添加Affiliate功能
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
package com.ai.da.mapper.primary;
|
||||
|
||||
import com.ai.da.mapper.primary.entity.PaymentInfo;
|
||||
import com.ai.da.model.vo.OrderListVO;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface PaymentInfoMapper extends BaseMapper<PaymentInfo> {
|
||||
|
||||
List<OrderListVO> selectPageOrderList(Long accountId, String startTime, String endTime, int offset, int pageSize);
|
||||
|
||||
int queryOrderListTotalCount(Long accountId, String startTime, String endTime);
|
||||
}
|
||||
|
||||
@@ -25,4 +25,6 @@ public class Affiliate extends BaseEntity{
|
||||
private Boolean approved = false;
|
||||
|
||||
private String link;
|
||||
|
||||
private String promotionMethod;
|
||||
}
|
||||
|
||||
@@ -33,4 +33,7 @@ public class SubscriptionInfo extends BaseEntity{
|
||||
// 当前订阅订单有效期结束时间
|
||||
private Long currentPeriodEnd;
|
||||
|
||||
// 取消订阅原因
|
||||
private String cancelReason;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user