using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 地接费用多表联查类 /// public class ViewGroundPay { string area; /// /// 地区 /// public string Area { get { return area; } set { area = value; } } string priceType; /// /// 费用类型 /// public string PriceType { get { return priceType; } set { priceType = value; } } float price; /// /// 金额 /// public float Price { get { return price; } set { price = value; } } /// /// 此次付款百分比 /// public Decimal PayPercentage { get; set; } string currency; /// /// 币种 /// public string Currency { get { return currency; } set { currency = value; } } string priceContent; /// /// 金额描述 /// public string PriceContent { get { return priceContent; } set { priceContent = value; } } string remark; /// /// 备注 /// public string Remark { get { return remark; } set { remark = value; } } string operatorDate; /// /// 时间 /// public string OperatorDate { get { return operatorDate; } set { operatorDate = value; } } string isPay; /// /// 付款状态 /// public string IsPay { get { return isPay; } set { if (value != null && value != "" && value == "0") isPay = "未付款"; else if (value != null && value != "" && value == "1") isPay = "已付款"; else if (value != null && value != "" && value == "未付款") isPay = "未付款"; else if (value != null && value != "" && value == "已付款") isPay = "已付款"; else isPay = "未付款"; } } string payee; /// /// 收款方 /// public string Payee { get { return payee; } set { payee = value; } } string orbitalPrivateTransfer; /// /// 费用标识 /// public string OrbitalPrivateTransfer { get { return orbitalPrivateTransfer; } set { if (value != null && value != "" && value == "0") orbitalPrivateTransfer = "公转"; else if (value != null && value != "" && value == "1") orbitalPrivateTransfer = "私转"; else orbitalPrivateTransfer = "未知"; } } string payDid; /// /// 支付方式 /// public string PayDid { get { return payDid; } set { payDid = value; } } string paydName; /// /// 支付方式(名称) /// public string PaydName { get { return paydName; } set { paydName = value; } } string auditGMDate; public string AuditGMDate { get { return auditGMDate; } set { auditGMDate = value; } } string operators; public string Operator { get { return operators; } set { operators = value; } } public int IsMatchCreditCard { get; set; } public string CarType { get; set; } } }