Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

30 righe
805 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace JT808.DotNetty.Dashbord.Models
  8. {
  9. [Table("jt808_source_package_log")]
  10. public class JT808_SourcePackageLog
  11. {
  12. [Key]
  13. [Column("id")]
  14. public long Id { get; set; }
  15. [Column("create_time")]
  16. public long CreateTime { get; set; }
  17. [MaxLength(32)]
  18. [Column("ip")]
  19. public string IP { get; set; }
  20. [Column("port")]
  21. public int Port { get; set; }
  22. [Column("is_success")]
  23. public bool IsSuccess { get; set; }
  24. [MaxLength(128)]
  25. [Column("reason")]
  26. public string Reason { get; set; }
  27. }
  28. }