username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
using CY.Model.Pay;
using CY.Infrastructure.Query;
 
namespace CY.IDAL
{
    /// <summary>
    /// 提现申请-数据库操作接口
    /// </summary>
    public interface IPay_CashApplyDAL : ICommonDAL, IPaging<Pay_CashApply>, IGetAllModel<Pay_CashApply>
    {
        /// <summary>
        /// 单个查询
        /// </summary>
        /// <param name="Keyid">编号</param>
        /// <returns></returns>
        Pay_CashApply SelectModelByKeyid(int? Keyid);
        /// <summary>
        /// 查询提现申请列表
        /// </summary>
        /// <param name="MemberId"></param>
        /// <returns></returns>
        List<Pay_CashApply> SelectAllModelByMemberId(Guid MemberId);
        /// <summary>
        /// 处理提现
        /// </summary>
        /// <param name="m_Pay_CashApply"></param>
        /// <param name="m_Pay_Request"></param>
        /// <returns></returns>
        bool HandleCash(Pay_CashApply m_Pay_CashApply, Pay_Request m_Pay_Request, Pay_PromotionRecord m_Pay_PromotionRecord, Pay_PaymentAccount m_Pay_PaymentAccount);
 
         /// <summary>
        /// 根据条件查询提现记录
        /// </summary>
        /// <param name="pa"></param>
        /// <param name="cashTypeId"></param>
        /// <param name="startDate"></param>
        /// <param name="endDate"></param>
        /// <param name="province"></param>
        /// <param name="city"></param>
        /// <param name="country"></param>
        /// <returns></returns>
        IEnumerable<Pay_CashApply> GetModelPageList(Pagination pa, int cashTypeId, string startDate, string endDate, string province, string city, string country);
    }
}