123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 地接费用多表联查类
- /// </summary>
- public class ViewGroundPay
- {
- string area;
- /// <summary>
- /// 地区
- /// </summary>
- public string Area
- {
- get { return area; }
- set { area = value; }
- }
- string priceType;
- /// <summary>
- /// 费用类型
- /// </summary>
- public string PriceType
- {
- get { return priceType; }
- set { priceType = value; }
- }
- float price;
- /// <summary>
- /// 金额
- /// </summary>
- public float Price
- {
- get { return price; }
- set { price = value; }
- }
- /// <summary>
- /// 此次付款百分比
- /// </summary>
- public Decimal PayPercentage { get; set; }
- string currency;
- /// <summary>
- /// 币种
- /// </summary>
- public string Currency
- {
- get { return currency; }
- set { currency = value; }
- }
- string priceContent;
- /// <summary>
- /// 金额描述
- /// </summary>
- public string PriceContent
- {
- get { return priceContent; }
- set { priceContent = value; }
- }
- string remark;
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- string operatorDate;
- /// <summary>
- /// 时间
- /// </summary>
- public string OperatorDate
- {
- get { return operatorDate; }
- set { operatorDate = value; }
- }
- string isPay;
- /// <summary>
- /// 付款状态
- /// </summary>
- 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;
- /// <summary>
- /// 收款方
- /// </summary>
- public string Payee
- {
- get { return payee; }
- set { payee = value; }
- }
- string orbitalPrivateTransfer;
- /// <summary>
- /// 费用标识
- /// </summary>
- 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;
- /// <summary>
- /// 支付方式
- /// </summary>
- public string PayDid
- {
- get { return payDid; }
- set { payDid = value; }
- }
- string paydName;
- /// <summary>
- /// 支付方式(名称)
- /// </summary>
- 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; }
- }
- }
|