using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { /// /// T_Sys_IDCardInfo:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_IDCardInfo { public T_Sys_IDCardInfo() { } #region Model private int _f_id; private string _f_code; private string _f_value; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// /// public string F_Code { set { _f_code = value; } get { return _f_code; } } /// /// /// public string F_Value { set { _f_value = value; } get { return _f_value; } } #endregion Model } }