49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using CRM.Core.Model.Map;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRM.Core.Model.QueryModels
|
|
{
|
|
public class DepositEnt
|
|
{
|
|
public class DepositEntQueryResult
|
|
{
|
|
|
|
public int MonKey { get; set; }
|
|
public decimal TradeAmount { get; set; }
|
|
public decimal TradeAmount_Alipay { get; set; }
|
|
public decimal TradeAmount_Wxpay { get; set; }
|
|
public decimal TradeAmount_Bank { get; set; }
|
|
public decimal TradeAmount_Other { get { return TradeAmount - TradeAmount_Alipay - TradeAmount_Wxpay - TradeAmount_Bank; } }
|
|
|
|
public decimal Bef_Deposit_Alipay { get; set; }
|
|
public decimal Bef_Deposit_Wxpay { get; set; }
|
|
public decimal Bef_Deposit_Bank { get; set; }
|
|
public decimal Bef_Deposit_Other { get; set; }
|
|
|
|
public decimal Bef_Deposit_OtherCom { get; set; }
|
|
public decimal Aft_Deposit { get; set; }
|
|
public decimal Not_Deposit { get; set; }
|
|
}
|
|
|
|
public class BillResult
|
|
{
|
|
public int monkey { get; set; }
|
|
public string mch { get; set; }
|
|
public decimal amount { get; set; }
|
|
}
|
|
|
|
public class DepositResult
|
|
{
|
|
public int paymon { get; set; }
|
|
public int auditmon { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
}
|