using Newtonsoft.Json; using PublicLibrary.Json; using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { [Serializable] public class APGoodsMT { private int _billno; private string _entid; private string _billcode; private string _ruleid; private string _payorgid; private string _orgid; private string _deptid; private string _caozy; private string _dates; private string _ontime; private string _sysdates; private string _rfid; private string _rftype; private string _issettle; private decimal _jiesje; private decimal _amount; private decimal _taxamount; private decimal _tax; private decimal _retailamt; private string _summaries; private string _salemanid; private decimal _ptaxamount; private string _StaffName; private string _Contact; private string _K_BillCode; private string _IsPrepay; private decimal _PrepayAmt; private string _K_djpjzt; private List _goodsList; private string _Remark; private string _OppContId; private string _PayType; private string _K_IsApplyP; private string _BusinessName; private string _Source; private int _PBillNo; private string _PBillCode; public APGoodsMT() { } public int BillNo { get { return _billno; } set { _billno = value; } } public string EntId { get { return _entid; } set { _entid = value; } } public string BillCode { get { return _billcode; } set { _billcode = value; } } public string RuleId { get { return _ruleid; } set { _ruleid = value; } } public string PayOrgId { get { return _payorgid; } set { _payorgid = value; } } public string OrgId { get { return _orgid; } set { _orgid = value; } } public string DeptId { get { return _deptid; } set { _deptid = value; } } public string caozy { get { return _caozy; } set { _caozy = value; } } public string Dates { get { return _dates; } set { _dates = value; } } public string OnTime { get { return _ontime; } set { _ontime = value; } } public string SysDates { get { return _sysdates; } set { _sysdates = value; } } public string RfId { get { return _rfid; } set { _rfid = value; } } public string RfType { get { return _rftype; } set { _rftype = value; } } [JsonConverter(typeof(BoolConvert), "是,否")] public string IsSettle { get { return _issettle; } set { _issettle = value; } } public decimal jiesje { get { return _jiesje; } set { _jiesje = value; } } public decimal Amount { get { return _amount; } set { _amount = value; } } public decimal TaxAmount { get { return _taxamount; } set { _taxamount = value; } } public decimal Tax { get { return _tax; } set { _tax = value; } } public decimal RetailAmt { get { return _retailamt; } set { _retailamt = value; } } public string Summaries { get { return _summaries; } set { _summaries = value; } } public string SaleManId { get { return _salemanid; } set { _salemanid = value; } } public decimal PTaxAmount { get { return _ptaxamount; } set { _ptaxamount = value; } } public string StaffName { get => _StaffName; set => _StaffName = value; } public string Contact { get => _Contact; set => _Contact = value; } public string K_BillCode { get => _K_BillCode; set => _K_BillCode = value; } [JsonConverter(typeof(BoolConvert), "是,否")] public string IsPrepay { get => _IsPrepay; set => _IsPrepay = value; } public decimal PrepayAmt { get => _PrepayAmt; set => _PrepayAmt = value; } public string K_djpjzt { get => _K_djpjzt; set => _K_djpjzt = value; } public List GoodsList { get => _goodsList; set => _goodsList = value; } public string Remark { get => _Remark; set => _Remark = value; } public string OppContId { get => _OppContId; set => _OppContId = value; } public string PayType { get => _PayType; set => _PayType = value; } public string K_IsApplyP { get => _K_IsApplyP; set => _K_IsApplyP = value; } public string BusinessName { get => _BusinessName; set => _BusinessName = value; } public string Source { get => _Source; set => _Source = value; } public int PBillNo { get => _PBillNo; set => _PBillNo = value; } public string PBillCode { get => _PBillCode; set => _PBillCode = value; } } }