| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- using System;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// T_Chat_IPList:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Chat_IPList
- {
- public T_Chat_IPList()
- { }
- #region Model
- private int _f_id;
- private string _f_openid;
- private string _f_ip;
- private string _f_country;
- private string _f_countrycode;
- private string _f_area;
- private string _f_areacode;
- private string _f_region;
- private string _f_regioncode;
- private string _f_city;
- private string _f_citycode;
- private string _f_county;
- private string _f_countycode;
- private string _f_isp;
- private string _f_ispcode;
- private DateTime? _f_createtime;
- private int? _f_type;
- /// <summary>
- ///
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_OpenId
- {
- set { _f_openid = value; }
- get { return _f_openid; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_IP
- {
- set { _f_ip = value; }
- get { return _f_ip; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Country
- {
- set { _f_country = value; }
- get { return _f_country; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CountryCode
- {
- set { _f_countrycode = value; }
- get { return _f_countrycode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Area
- {
- set { _f_area = value; }
- get { return _f_area; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_AreaCode
- {
- set { _f_areacode = value; }
- get { return _f_areacode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Region
- {
- set { _f_region = value; }
- get { return _f_region; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_RegionCode
- {
- set { _f_regioncode = value; }
- get { return _f_regioncode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_City
- {
- set { _f_city = value; }
- get { return _f_city; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CityCode
- {
- set { _f_citycode = value; }
- get { return _f_citycode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_County
- {
- set { _f_county = value; }
- get { return _f_county; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CountyCode
- {
- set { _f_countycode = value; }
- get { return _f_countycode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_ISP
- {
- set { _f_isp = value; }
- get { return _f_isp; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_ISPCode
- {
- set { _f_ispcode = value; }
- get { return _f_ispcode; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- #endregion Model
- }
- }
|