using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { [Serializable] public class K_Contactsp { private string _entid; private string _suppliersid; private string _contactid; private string _goodsid; private decimal _maxpurp; private decimal _minpurp; private decimal _k_lastprice; private string _pushflag; private int _id; private decimal _k_price; private decimal _purp; private string _GoodsCode; private string _StaffName; public K_Contactsp() { } public string EntId { get { return _entid; } set { _entid = value; } } public string SuppliersId { get { return _suppliersid; } set { _suppliersid = value; } } public string ContactId { get { return _contactid; } set { _contactid = value; } } public string GoodsId { get { return _goodsid; } set { _goodsid = value; } } public decimal MaxPurp { get { return _maxpurp; } set { _maxpurp = value; } } public decimal MinPurp { get { return _minpurp; } set { _minpurp = value; } } public decimal K_LastPrice { get { return _k_lastprice; } set { _k_lastprice = value; } } public string PushFlag { get { return _pushflag; } set { _pushflag = value; } } public int ID { get { return _id; } set { _id = value; } } public decimal K_Price { get { return _k_price; } set { _k_price = value; } } public decimal PurP { get { return _purp; } set { _purp = value; } } private string _goodsName; private string _SuppliersName; private string _contact; private int _IsPush; public string GoodsName { get => _goodsName; set => _goodsName = value; } public string SuppliersName { get => _SuppliersName; set => _SuppliersName = value; } public string Contact { get => _contact; set => _contact = value; } public int IsPush { get => _IsPush; set => _IsPush = value; } public string GoodsCode { get => _GoodsCode; set => _GoodsCode = value; } public string StaffName { get => _StaffName; set => _StaffName = value; } } }