using Mapster;
namespace Model
{
///
/// app上报记录 app_report_record
///
[SplitTable(SplitType.Month)]
[SugarTable("app_report_record_{year}{month}{day}", "app上报记录")]
[Tenant("0")]
public class AppReportRecord
{
///
/// ID
///
[SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, ColumnName = "id")]
public long id { get; set; }
///
/// 版本号
///
[SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
public int version { get; set; }
///
/// 删除标记
///
[SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")]
public int delFlag { get; set; }
///
/// 创建时间
///
[SplitField]
[SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")]
public DateTime? createTime { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")]
public DateTime? updateTime { get; set; }
///
/// 上报版本号
///
[SugarColumn(ColumnDescription = "上报版本号", Length = 20, ColumnName = "app_version")]
public string? appVersion { get; set; }
///
/// 用户标识
///
[SugarColumn(ColumnDescription = "用户标识", Length = 50, ColumnName = "user_tag")]
public string? userTag { get; set; }
///
/// 页面标题
///
[SugarColumn(ColumnDescription = "页面标题", Length = 50, ColumnName = "page_title")]
public string? pageTitle { get; set; }
///
/// 页面地址
///
[SugarColumn(ColumnDescription = "页面地址", Length = 200, ColumnName = "page_url")]
public string? pageUrl { get; set; }
///
/// 用户系统信息
///
[SugarColumn(ColumnDescription = "用户系统信息", ColumnName = "user_sys_info")]
public string? userSysInfo { get; set; }
///
/// 设备尺寸
///
[SugarColumn(ColumnDescription = "设备尺寸", Length = 50, ColumnName = "device_size")]
public string? deviceSize { get; set; }
///
/// 上报类型
///
[SugarColumn(ColumnDescription = "上报类型", Length = 50, ColumnName = "report_type")]
public string? reportType { get; set; }
///
/// 上报数据
///
[SugarColumn(ColumnDescription = "上报数据", ColumnName = "report_data")]
public string? reportData { get; set; }
}
}