zhengyuxuan
2025-04-02 d739f66a7653ac190b029dd396529283c9b2e91e
fix:渠道筛选
6个文件已修改
67 ■■■■■ 已修改文件
LifePayment/LifePayment.Application.Contracts/LifePay/ILifePayService.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application/LifePay/LifePayService.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Host/LifePaymentService.HttpApi.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Host/LifePaymentServices.Application.Contracts.xml 50 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application.Contracts/LifePay/ILifePayService.cs
@@ -243,7 +243,7 @@
    /// <returns></returns>
    Task<PageOutput<CreateEditPayChannelsInput>> GetLifePayChannlesPage(PageInput input);
    Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList();
    Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList(QueryLifePayChannlesInput input);
    Task<CreateEditPayChannelsInput> GetLifePayChannlesDto(Guid id);
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -859,3 +859,8 @@
{
    public List<string>? ChannleList { get; set; }
}
public class QueryLifePayChannlesInput
{
    public LifePayChannelsStatsEnum? Status { get; set; }
}
LifePayment/LifePayment.Application/LifePay/LifePayService.cs
@@ -607,9 +607,9 @@
        return await GetLifePayChannlesListFilter().GetPageResult(input.PageModel);
    }
    public async Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList()
    public async Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList(QueryLifePayChannlesInput input)
    {
        return await GetLifePayChannlesListFilter().ToListAsync();
        return await GetLifePayChannlesListFilter().WhereIf(input.Status.HasValue,x => x.Status == input.Status).ToListAsync();
    }
    public async Task<CreateEditPayChannelsInput> GetLifePayChannlesDto(Guid id)
LifePayment/LifePayment.Host/LifePaymentService.HttpApi.xml
@@ -220,7 +220,7 @@
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:LifePayment.HttpApi.LifePayController.GetLifePayChannlesAllList">
        <member name="M:LifePayment.HttpApi.LifePayController.GetLifePayChannlesAllList(LifePayment.Application.Contracts.QueryLifePayChannlesInput)">
            <summary>
            获取全部缴费渠道
            </summary>
LifePayment/LifePayment.Host/LifePaymentServices.Application.Contracts.xml
@@ -814,6 +814,56 @@
            交易金额
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.PlatformRate">
            <summary>
            平台折扣比例
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.ChannleRate">
            <summary>
            渠道折扣
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.RechargeAmount">
            <summary>
            充值金额
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.OrderNo">
            <summary>
            平台订单号
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.PayAmount">
            <summary>
            成交金额
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.ChannlesRakeRate">
            <summary>
            渠道佣金比例
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.ChannlesRakePrice">
            <summary>
            佣金
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.FinishTime">
            <summary>
            结算时间
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.ExtraProperties">
            <summary>
            拓展属性
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.AddLifePayChannlesRakeReceiptsInput.ChannelId">
            <summary>
            下单渠道
            </summary>
        </member>
        <member name="P:LifePayment.Application.Contracts.LifePayExpensesReceiptsPageInput.KeyWord">
            <summary>
            查询条件
LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
@@ -349,9 +349,9 @@
        /// 获取全部缴费渠道
        /// </summary>
        [HttpGet]
        public async Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList()
        public async Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList(QueryLifePayChannlesInput input)
        {
            return await _lifePayService.GetLifePayChannlesAllList();
            return await _lifePayService.GetLifePayChannlesAllList(input);
        }
        /// <summary>