using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace CallCenterApi.Model
{
///
/// T_Sys_VerificationCode:实体类(属性说明自动提取数据库字段的描述信息)
///
[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;
///
///
///
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 DateTime? F_CreateTime
{
set { _f_createtime = value; }
get { return _f_createtime; }
}
///
///
///
public string F_UserCode
{
set { _f_usercode = value; }
get { return _f_usercode; }
}
///
///
///
public string F_Notes
{
set { _f_notes = value; }
get { return _f_notes; }
}
///
///
///
public string F_Timestamp
{
set { _f_timestamp = value; }
get { return _f_timestamp; }
}
#endregion Model
}
}