using Api.Framework.Tools; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.Model { /// /// 推广位 /// public class fl_adzone_info : base_model { /// /// 机器人id /// public long robot_id { get; set; } /// /// 联盟id /// public long alliance_id { get; set; } /// /// 推广位组 /// public long adzone_group { get; set; } /// /// 推广位名称 /// public string adzone_name { get; set; } /// /// 推广位pid /// public string adzone_pid { get; set; } /// /// 推广位CPS名称 /// public string adzone_pid_cps_name { get; set; } /// /// 用户id(用于私人pid) /// public long member_id { get; set; } /// /// 群id(用于群pid) /// public string group_id { get; set; } /// /// 自定义类型(用处) /// public string custom_type { get; set; } /// /// 是否下载报表 /// public bool is_download { get; set; } /// /// 是否禁用(true为禁用) /// public bool onoff { get; set; } /// /// 扩展属性 /// public string extend { get; set; } /// /// 是否强制绑定 /// public bool is_auto_bind { get; set; } } }