using Api.Framework.SDK;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Weixin.TBCirclePromotion.Entitys
{
///
/// 临时的表 (用于数据显示)
///
public class tbinfo_temp
{
public long ID { get; set; }
///
/// 平台类型
///
public ChatType chattype { get; set; }
///
/// 用户账号
///
public string name { get; set; }
///
/// [昵称]
///
public string nick { get; set; }
///
/// 主推广位cps名称
///
private string _adzone_pid_cps_name { get; set; }
public string adzone_pid_cps_name
{
get { return _adzone_pid_cps_name; }
set { _adzone_pid_cps_name = string.IsNullOrEmpty(value) ? string.Empty : value; }
}
private string _adzone_pid;
///
/// 主推广位id
///
public string adzone_pid
{
get { return _adzone_pid; }
set { _adzone_pid = string.IsNullOrEmpty(value) ? string.Empty : value; }
}
///
/// 主推广位昵称
///
private string _adzone_name;
public string adzone_name
{
get { return _adzone_name; }
set { _adzone_name = string.IsNullOrEmpty(value) ? string.Empty : value; }
}
///
/// 是否禁用
///
public bool onoff { get; set; }
}
}