using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using SqlSugar; namespace IStation.Entity { /// /// 用户关注 /// [SugarTable("user_attention")] public class UserAttention : BaseEntity, System.ICloneable { /// /// /// public UserAttention() { } /// /// /// public UserAttention(UserAttention rhs) : base(rhs) { this.UserID = rhs.UserID; this.CorpID = rhs.CorpID; this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.AttentionTime = rhs.AttentionTime; } /// /// 用户标识 /// public long UserID { get { return _userid; } set { _userid = value; } } private long _userid; /// /// 客户标识 /// public long CorpID { get { return _corpid; } set { _corpid = value; } } private long _corpid; /// /// 对象类型 /// public string ObjectType { get { return _objecttype; } set { _objecttype = value; } } private string _objecttype; /// /// 对象标识 /// public long ObjectID { get { return _objectid; } set { _objectid = value; } } private long _objectid; /// /// 关注时间 /// public DateTime AttentionTime { get { return _attentiontime; } set { _attentiontime = value; } } private DateTime _attentiontime; /// /// /// public UserAttention Clone() { return (UserAttention)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }