| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RMYY_CallCenter_Api.Model
- {
- /// <summary>
- /// T_Sys_TelTitleData:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_TelTitleData
- {
- public T_Sys_TelTitleData()
- { }
- #region Model
- private int _f_id;
- private string _f_titlename;
- private string _f_keyphonenum;
- private int? _f_defphonenumlen;
- private string _f_wcode;
- /// <summary>
- ///
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_TitleName
- {
- set { _f_titlename = value; }
- get { return _f_titlename; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_KeyPhoneNum
- {
- set { _f_keyphonenum = value; }
- get { return _f_keyphonenum; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_DefPhoneNumLen
- {
- set { _f_defphonenumlen = value; }
- get { return _f_defphonenumlen; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_WCode
- {
- set { _f_wcode = value; }
- get { return _f_wcode; }
- }
- #endregion Model
- }
- }
|