using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 用户关注 /// public partial class UserAttention:System.ICloneable { /// /// /// public UserAttention() { } /// /// /// public UserAttention(UserAttention rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.UserID = rhs.UserID; this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.AttentionTime = rhs.AttentionTime; } /// /// /// public void Reset(UserAttention rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.UserID = rhs.UserID; this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.AttentionTime = rhs.AttentionTime; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 用户标识 /// public long UserID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 关注时间 /// public DateTime AttentionTime { get; set; } /// /// /// public UserAttention Clone() { return (UserAttention)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }