37 lines
961 B
C#
37 lines
961 B
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Weixin.WPHCirclePromotion.Entitys
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 平台推广位设置类 (数据库表)
|
|||
|
/// </summary>
|
|||
|
class fl_plugin_wphcirclepromotion_wphtgw : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 左连接主表 fl_robot_info 的主键
|
|||
|
/// </summary>
|
|||
|
public int robot_id { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 主推广位CPS名称
|
|||
|
/// </summary>
|
|||
|
public string pid_cps_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 主推广位id
|
|||
|
/// </summary>
|
|||
|
public string pid { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 主推广位昵称
|
|||
|
/// </summary>
|
|||
|
public string pid_name { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 是否禁用
|
|||
|
/// </summary>
|
|||
|
public bool onoff { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|