ColourCastModel.cs 775 B

123456789101112131415161718192021222324252627
  1. using SqlSugar;
  2. namespace EInk.Models
  3. {
  4. [SugarTable("colourcast_info")]
  5. public class ColourCastModel
  6. {
  7. [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
  8. public long id { get; set; }
  9. [SugarColumn(ColumnName = "slidesNumber", ColumnDataType = StaticConfig.CodeFirst_BigString)]
  10. public string slidesNumber { get; set; }
  11. [SugarColumn(ColumnName = "is_send")]
  12. public int is_send { get; set; }
  13. [SugarColumn(ColumnName = "create_time")]
  14. public DateTime create_time { get; set; }
  15. [SugarColumn(ColumnName = "send_time")]
  16. public DateTime send_time { get; set; }
  17. [SugarColumn(ColumnName = "content")]
  18. public string content { get; set; }
  19. }
  20. }