using Mapster; namespace Model { /// /// 逻辑执行日志 logic_log_record /// [SplitTable(SplitType.Month)] [SugarTable("logic_log_record_{year}{month}{day}", "逻辑执行日志")] [Tenant("0")] public class LogicLogRecord { /// /// 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 = 32, ColumnName = "create_by")] public string? createBy { get; set; } /// /// 更新人 /// [SugarColumn(ColumnDescription = "更新人", Length = 32, ColumnName = "update_by")] public string? updateBy { get; set; } /// /// 请求ID /// [SugarColumn(ColumnDescription = "请求ID", Length = 50, ColumnName = "request_id")] public string? requestId { get; set; } /// /// 请求参数 /// [SugarColumn(ColumnDescription = "请求参数", Length = 255, ColumnName = "request_param")] public string? requestParam { get; set; } /// /// 逻辑项目名称 /// [SugarColumn(ColumnDescription = "逻辑项目名称", Length = 50, ColumnName = "logic_project_name")] public string? logicProjectName { get; set; } /// /// 逻辑项ID /// [SugarColumn(ColumnDescription = "逻辑项ID", ColumnName = "logic_id")] public int logicId { get; set; } /// /// 执行日志文件名 /// [SugarColumn(ColumnDescription = "执行日志文件名", Length = 255, ColumnName = "logic_log_file_path")] public string? logicLogFilePath { get; set; } } }