46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WPHRebate.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_wphrebate_wphtgw : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 左连接主表 fl_robot_info 的主键
|
|||
|
/// </summary>
|
|||
|
public int robot_id { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 主推广位CPS名称
|
|||
|
/// </summary>
|
|||
|
public string pid_chief_cps_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 主推广位id
|
|||
|
/// </summary>
|
|||
|
public string pid_chief { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 主推广位昵称
|
|||
|
/// </summary>
|
|||
|
public string pid_chief_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 副推广位CPS名称
|
|||
|
/// </summary>
|
|||
|
public string pid_deputy_cps_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 副推广位id
|
|||
|
/// </summary>
|
|||
|
public string pid_deputy { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 副推广位名称
|
|||
|
/// </summary>
|
|||
|
public string pid_deputy_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 是否禁用
|
|||
|
/// </summary>
|
|||
|
public bool onoff { get; set; }
|
|||
|
}
|
|||
|
}
|