using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { [Serializable] public class PushFeedback:PushContactWithGoods { private Guid _id; private Guid _pushrecordid; private string _feedback; //private string _goodsid; //private string _goodsname; //private string _goodscode; private int _goodsnum; private string _entname; //private string _brandname; private int _creationperson; private DateTime _creationtime; private int _lastmodifiedperson; private DateTime _lastmodified; private bool _isdelete; //private string _businessid; //private string _businesscode; //private string _businessname; //private string _goodsspec; //private string _manufacturer; private string _certino; //private decimal _purprice; private int _pushaccountid; //private decimal _storegapnum; //private decimal _purchasetotalnum; //private string _suppliersid; //private string _brandid; //private string _remark; //private string _entid; private int _state; private int _iscomplete; private DateTime _completetime; private int _hasorder; private DateTime _ordertime; private int _iscancel; private DateTime _canceltime; private DateTime _confirmpuchasetime; private DateTime _confirmordertime; private int _confirmpuchaser; private int _confirmorderperson; private DateTime _submittime; private int _submitperson; private int _cancelperson; private string _pushcode; private decimal _actprice; private String _ApprovalNo; private String _unit; private int _WmsMeas; public PushFeedback() { } public Guid Id { get { return _id; } set { _id = value; } } public Guid PushRecordId { get { return _pushrecordid; } set { _pushrecordid = value; } } public string Feedback { get { return _feedback; } set { _feedback = value; } } //public string GoodsId //{ // get { return _goodsid; } // set { _goodsid = value; } //} //public string GoodsName //{ // get { return _goodsname; } // set { _goodsname = value; } //} //public string GoodsCode //{ // get { return _goodscode; } // set { _goodscode = value; } //} public int GoodsNum { get { return _goodsnum; } set { _goodsnum = value; } } public string EntName { get { return _entname; } set { _entname = value; } } //public string BrandName //{ // get { return _brandname; } // set { _brandname = value; } //} public int CreationPerson { get { return _creationperson; } set { _creationperson = value; } } public DateTime CreationTime { get { return _creationtime; } set { _creationtime = value; } } public int LastModifiedPerson { get { return _lastmodifiedperson; } set { _lastmodifiedperson = value; } } public DateTime LastModified { get { return _lastmodified; } set { _lastmodified = value; } } public bool IsDelete { get { return _isdelete; } set { _isdelete = value; } } //public string BusinessId //{ // get { return _businessid; } // set { _businessid = value; } //} //public string BusinessCode //{ // get { return _businesscode; } // set { _businesscode = value; } //} //public string BusinessName //{ // get { return _businessname; } // set { _businessname = value; } //} //public string GoodsSpec //{ // get { return _goodsspec; } // set { _goodsspec = value; } //} //public string Manufacturer //{ // get { return _manufacturer; } // set { _manufacturer = value; } //} public string CertiNo { get { return _certino; } set { _certino = value; } } //public decimal PurPrice //{ // get { return _purprice; } // set { _purprice = value; } //} public int PushAccountId { get { return _pushaccountid; } set { _pushaccountid = value; } } public new string UserId { get { return _pushaccountid.ToString(); } set { _pushaccountid = Convert.ToInt32(value); } } //public decimal StoreGapNum //{ // get { return _storegapnum; } // set { _storegapnum = value; } //} //public decimal PurchaseTotalNum //{ // get { return _purchasetotalnum; } // set { _purchasetotalnum = value; } //} //public string SuppliersId //{ // get { return _suppliersid; } // set { _suppliersid = value; } //} //public string BrandId //{ // get { return _brandid; } // set { _brandid = value; } //} //public string Remark //{ // get { return _remark; } // set { _remark = value; } //} //public string EntId //{ // get { return _entid; } // set { _entid = value; } //} public int State { get { return _state; } set { _state = value; } } public int IsComplete { get { return _iscomplete; } set { _iscomplete = value; } } public DateTime CompleteTime { get { return _completetime; } set { _completetime = value; } } public int HasOrder { get { return _hasorder; } set { _hasorder = value; } } public DateTime OrderTime { get { return _ordertime; } set { _ordertime = value; } } public int IsCancel { get { return _iscancel; } set { _iscancel = value; } } public DateTime CancelTime { get { return _canceltime; } set { _canceltime = value; } } public DateTime ConfirmPuchaseTime { get { return _confirmpuchasetime; } set { _confirmpuchasetime = value; } } public DateTime ConfirmOrderTime { get { return _confirmordertime; } set { _confirmordertime = value; } } public int ConfirmPuchaser { get { return _confirmpuchaser; } set { _confirmpuchaser = value; } } public int ConfirmOrderPerson { get { return _confirmorderperson; } set { _confirmorderperson = value; } } public DateTime SubmitTime { get { return _submittime; } set { _submittime = value; } } public int SubmitPerson { get { return _submitperson; } set { _submitperson = value; } } public int CancelPerson { get { return _cancelperson; } set { _cancelperson = value; } } public string PushCode { get { return _pushcode; } set { _pushcode = value; } } private string _AccountRealName; private int _ReceiptMd; private int _CentPayMd; private string _OrgId; private string _DepId; public string AccountRealName { get => _AccountRealName; set => _AccountRealName = value; } public int ReceiptMd { get => _ReceiptMd; set => _ReceiptMd = value; } public int CentPayMd { get => _CentPayMd; set => _CentPayMd = value; } //private string _contactid; //public string ContactId //{ // get { return _contactid; } // set { _contactid = value; } //} public string DepId { get => _DepId; set => _DepId = value; } public string OrgId { get => _OrgId; set => _OrgId = value; } public decimal ActPrice { get => _actprice; set => _actprice = value; } public string ApprovalNo { get => _ApprovalNo; set => _ApprovalNo = value; } public string Unit { get => _unit; set => _unit = value; } public int WmsMeas { get => _WmsMeas; set => _WmsMeas = value; } } public class PushFeedbackExt: PushFeedback{ private decimal _DiffHour; private DateTime _RequestDate; private string _PurName; private decimal _PrepayAmt; private string _IsPrepay; private int _IsPrepayI; public decimal DiffHour { get => _DiffHour; set => _DiffHour = value; } public DateTime RequestDate { get => _RequestDate; set => _RequestDate = value; } public string PurName { get => _PurName; set => _PurName = value; } public decimal PrepayAmt { get => _PrepayAmt; set => _PrepayAmt = value; } public string IsPrepay { get => _IsPrepay; set => _IsPrepay = value; } public int IsPrepayI { get => _IsPrepayI; set => _IsPrepayI = value; } } public class PushFeedbackExcel { private Guid _id; private Guid _pushrecordid; private string _pushcode; private string _goodsname; private string _goodscode; public Guid Id { get { return _id; } set { _id = value; } } public Guid PushRecordId { get { return _pushrecordid; } set { _pushrecordid = value; } } public string Pushcode { get => _pushcode; set => _pushcode = value; } public string GoodsName { get { return _goodsname; } set { _goodsname = value; } } public string GoodsCode { get { return _goodscode; } set { _goodscode = value; } } private string _GoodsSpec; private string _Manufacturer; private string _ApprovalNo; private string _businessname; private decimal _purprice; private decimal _actprice; private decimal _storegapnum; private decimal _purchasetotalnum; private string _feedback; public string Manufacturer { get => _Manufacturer; set => _Manufacturer = value; } public string ApprovalNo { get => _ApprovalNo; set => _ApprovalNo = value; } public string GoodsSpec { get => _GoodsSpec; set => _GoodsSpec = value; } public string BusinessName { get { return _businessname; } set { _businessname = value; } } public decimal PurPrice { get => _purprice; set => _purprice = value; } public decimal ActPrice { get => _actprice; set => _actprice = value; } public decimal StoreGapNum { get { return _storegapnum; } set { _storegapnum = value; } } public decimal PurchaseTotalNum { get { return _purchasetotalnum; } set { _purchasetotalnum = value; } } public string Feedback { get { return _feedback; } set { _feedback = value; } } } public class PushRecordExcel { private DateTime _creationTime; private String _accountRealName; private string _goodscode; private string _goodsname; private string _feedback; private decimal _storegapnum; private decimal _purchasetotalnum; private decimal _actprice; private decimal _purprice; private string _BusinessCode; private string _BrandName; private string _GoodsSpec; private string _Manufacturer; private string _Remark; public DateTime CreationTime { get { return _creationTime; } set { _creationTime = value; } } public string AccountRealName { get { return _accountRealName; } set { _accountRealName = value; } } public string GoodsCode { get { return _goodscode; } set { _goodscode = value; } } public string GoodsName { get { return _goodsname; } set { _goodsname = value; } } public string Feedback { get { return _feedback; } set { _feedback = value; } } public decimal StoreGapNum { get { return _storegapnum; } set { _storegapnum = value; } } public decimal PurchaseTotalNum { get { return _purchasetotalnum; } set { _purchasetotalnum = value; } } public decimal ActPrice { get { return _actprice; } set { _actprice = value; } } public decimal PurPrice { get { return _purprice; } set { _purprice = value; } } public string BusinessCode { get { return _BusinessCode; } set { _BusinessCode = value; } } public string BrandName { get { return _BrandName; } set { _BrandName = value; } } public string GoodsSpec { get { return _GoodsSpec; } set { _GoodsSpec = value; } } public string Manufacturer { get { return _Manufacturer; } set { _Manufacturer = value; } } public string Remark { get { return _Remark; } set { _Remark = value; } } } }