using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { /// /// T_Sys_UserGroup:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_UserGroup { public T_Sys_UserGroup() { } #region Model private int _f_groupid; private string _f_groupname; private string _f_groupcode; private string _f_remark; /// /// /// public int F_GroupId { set { _f_groupid = value; } get { return _f_groupid; } } /// /// /// public string F_GroupName { set { _f_groupname = value; } get { return _f_groupname; } } /// /// /// public string F_GroupCode { set { _f_groupcode = value; } get { return _f_groupcode; } } /// /// /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } #endregion Model } }