using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///在线咨询师 /// [SugarTable("EC_OnlineAdviser")] public partial class EC_OnlineAdviser { public EC_OnlineAdviser(){ } /// /// Desc:数据编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:厂商编号 /// Default: /// Nullable:True /// public Guid? FirmId {get;set;} /// /// Desc:员工编号 /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc:状态/展示中1,未展示2 /// Default: /// Nullable:True /// public int? OnlineStatus {get;set;} /// /// Desc:姓名 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:头像 /// Default: /// Nullable:True /// public string LOGO {get;set;} /// /// Desc:标题 /// Default: /// Nullable:True /// public string Title {get;set;} /// /// Desc:介绍 /// Default: /// Nullable:True /// public string Introduction {get;set;} /// /// Desc:QQ /// Default: /// Nullable:True /// public string QQ {get;set;} /// /// Desc:电话 /// Default: /// Nullable:True /// public string Phone {get;set;} /// /// Desc:点击数 /// Default: /// Nullable:True /// public int? Quantity {get;set;} /// /// Desc:排序 /// Default: /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:True /// public string Operator {get;set;} } }