| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
-
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// T_Sys_VerificationCode:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_VerificationCode
- {
- public T_Sys_VerificationCode()
- { }
- #region Model
- private int _f_id;
- private string _f_code;
- private DateTime? _f_createtime;
- private string _f_usercode;
- private string _f_notes;
- private string _f_timestamp;
- /// <summary>
- ///
- /// </summary>
- public int F_ID
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Code
- {
- set { _f_code = value; }
- get { return _f_code; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_UserCode
- {
- set { _f_usercode = value; }
- get { return _f_usercode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Notes
- {
- set { _f_notes = value; }
- get { return _f_notes; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Timestamp
- {
- set { _f_timestamp = value; }
- get { return _f_timestamp; }
- }
- #endregion Model
- }
- }
|