using Api.Framework.Enums;
using Api.Framework.Tools;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Model
{
///
/// 推广位组
///
public class fl_adzone_group : base_model
{
///
/// 组名称
///
public string name { get; set; }
///
/// 推广位集合
///
[SugarColumn(ColumnDataType = "TEXT")]//设置字段为长文本
public string adzones { get; set; }
///
/// 联盟类型
///
public CpsType cps_type { get; set; }
///
/// 备注
///
public string remark { get; set; }
}
}