using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Entity { /// /// 关注对象选择 /// public class AttentionObjectSelected { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 选择 /// public bool Selected { get; set; } } }