using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Vis_TelBZ:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Vis_TelBZ { public T_Vis_TelBZ() { } #region Model private int _f_id; private string _f_sheng; private string _f_store; private string _f_leader; private string _f_score; private int? _f_telid; /// /// /// public int F_ID { set { _f_id = value; } get { return _f_id; } } /// /// 大区 /// public string F_Sheng { set { _f_sheng = value; } get { return _f_sheng; } } /// /// 店面 /// public string F_Store { set { _f_store = value; } get { return _f_store; } } /// /// 班组长 /// public string F_Leader { set { _f_leader = value; } get { return _f_leader; } } /// /// 班组得分 /// public string F_Score { set { _f_score = value; } get { return _f_score; } } /// /// /// public int? F_Telid { set { _f_telid = value; } get { return _f_telid; } } #endregion Model } }