| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- public partial class T_Sys_Users
- {
- public T_Sys_Users()
- { }
- #region Model
- private long _f_id;
- private string _f_openid;
- private DateTime _f_createtime = DateTime.Now;
- private int? _f_type;
- /// <summary>
- /// 自增id
- /// </summary>
- public long F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 微信openid,微博号
- /// </summary>
- public string F_OpenId
- {
- set { _f_openid = value; }
- get { return _f_openid; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- /// 1微信2微博
- /// </summary>
- public int? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- #endregion Model
- }
- }
|