using System;
namespace JiaZhiQuan.Common.Models.PO
{
///
/// n_banners
///
public class BannersPO
{
public int id { get; set; }
///
/// 所属模块
///
public string model { get; set; }
///
/// 模块位置
///
public string position { get; set; }
///
/// 标题
///
public string title { get; set; }
///
/// 图片Url
///
public string imageUrl { get; set; }
///
/// 跳转路由
///
public string actionLink { get; set; }
///
/// 0 无行为 1 跳转笔记/动态/资讯 2 跳转圈子 3 跳转H5 4 跳价值币页面
///
public int actionType { get; set; }
///
///
///
public int actionSubType { get; set; }
///
/// 行为数据JSON。无行为时为空字符串,笔记/动态/资讯/圈子时为编号,H5时是URL
///
public string actionData { get; set; }
public int displayOrder { get; set; }
public int disabled { get; set; }
public DateTime createAt { get; set; }
}
}