using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TBRebate.Entitys
{
///
/// 平台推广位设置类 (数据库表)
///
public class fl_plugin_tbrebate_tbtgw : base_model
{
///
/// 左连接主表 fl_robot_info 的主键
///
public int robot_id { get; set; }
///
/// 主推广位CPS名称
///
public string pid_chief_cps_name { get; set; }
///
/// 主推广位id
///
public string pid_chief { get; set; }
///
/// 主推广位昵称
///
public string pid_chief_name { get; set; }
///
/// 副推广位CPS名称
///
public string pid_deputy_cps_name { get; set; }
///
/// 副推广位id
///
public string pid_deputy { get; set; }
///
/// 副推广位名称
///
public string pid_deputy_name { get; set; }
///
/// 是否禁用
///
public bool onoff { get; set; }
}
}