using SqlSugar; using System; using System.Collections.Generic; using System.Security.Principal; using System.Text; namespace SlnMesnac.Model.domain { /// /// 待朗读信息信息 /// [SugarTable("mes_product_read_info"), TenantAttribute("mes")] public class MesProductReadInfo { /// /// 主键ID /// [SugarColumn(ColumnName = "read_id", IsPrimaryKey = true, IsIdentity = true)] public long ReadId { get; set; } /// /// 待朗读信息 /// [SugarColumn(ColumnName = "read_info")] public string ReadInfo { get; set; } /// /// 可用标志:0-不可用,1-可朗读 /// [SugarColumn(ColumnName = "use_flag")] public int? UseFlag { get; set; } /// /// 朗读总次数 /// [SugarColumn(ColumnName = "read_total")] public int ReadTotal { get; set; } /// /// 已朗读次数 /// [SugarColumn(ColumnName = "read_count")] public int? ReadCount { get; set; } /// /// 朗读状态:0-未开始;1-朗读中;2-朗读结束 /// [SugarColumn(ColumnName = "read_status")] public int? ReadStatus { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "creat_time")] public DateTime? CreatTime { get; set; } // datetime 对应 DateTime? /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } // datetime 对应 DateTime? /// /// 朗读结束时间 /// [SugarColumn(ColumnName = "end_time")] public DateTime? EndTime { get; set; } // datetime 对应 DateTime } }