using Api.Framework.SDK; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TBRebate.Entitys { /// /// 临时的表 (用于数据显示) /// public class tbinfo_temp { /// /// id /// public long ID { get; set; } /// /// 平台类型 /// public ChatType chattype { get; set; } /// /// 用户账号 /// public string name { get; set; } /// /// [昵称] /// public string nick { get; set; } /// /// 主推广位是否是组推广位 /// public bool is_chief_group { get; set; } /// /// 主推广位cps名称 /// private string _pid_chief_cps_name { get; set; } public string pid_chief_cps_name { get { return _pid_chief_cps_name; } set { _pid_chief_cps_name = string.IsNullOrEmpty(value) ? string.Empty : value; } } private string _pid_chief; /// /// 主推广位id /// public string pid_chief { get { return _pid_chief; } set { _pid_chief = string.IsNullOrEmpty(value) ? string.Empty : value; } } /// /// 主推广位昵称 /// private string _pid_chief_name; public string pid_chief_name { get { return _pid_chief_name; } set { _pid_chief_name = string.IsNullOrEmpty(value) ? string.Empty : value; } } /// /// 主推广位是否是组推广位 /// public bool is_deputy_group { get; set; } /// /// 副推广位cps名称 /// private string _pid_deputy_cps_name { get; set; } public string pid_deputy_cps_name { get { return _pid_deputy_cps_name; } set { _pid_deputy_cps_name = string.IsNullOrEmpty(value) ? string.Empty : value; } } /// /// 副推广位id /// private string _pid_deputy; public string pid_deputy { get { return _pid_deputy; } set { _pid_deputy = string.IsNullOrEmpty(value) ? string.Empty : value; } } /// /// 副推广位名称 /// private string _pid_deputy_name; public string pid_deputy_name { get { return _pid_deputy_name; } set { _pid_deputy_name = string.IsNullOrEmpty(value) ? string.Empty : value; } } public string adzone_activity_name { get; set; } /// /// 推广位 /// public string adzone_activity_pid { get; set; } public string adzone_activity_pid_cps_name { get; set; } /// /// 是否禁用 /// public bool onoff { get; set; } } }