33 lines
826 B
C#
33 lines
826 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Weixin.CircleTools.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_circletools_tgw
|
|||
|
{
|
|||
|
/// <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; }
|
|||
|
}
|
|||
|
}
|