T_Logic_Complaint_Model.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.Text;
  7. namespace JSWX_Model.SignUp
  8. {
  9. [Table("T_Logic_Complaint")]
  10. public class T_Logic_Complaint
  11. {
  12. public T_Logic_Complaint()
  13. {
  14. }
  15. [Key]
  16. [Column("F_SN")]
  17. [Display(Name = "F_SN")]
  18. public Guid F_SN { get; set; }
  19. [Column("F_CustomerSN")]
  20. [Display(Name = "F_CustomerSN")]
  21. public Guid F_CustomerSN { get; set; }
  22. [Column("F_DeviceNo")]
  23. [Display(Name = "F_DeviceNo")]
  24. public string F_DeviceNo { get; set; }
  25. [Column("F_WXUserSN")]
  26. [Display(Name = "F_WXUserSN")]
  27. public Guid F_WXUserSN { get; set; }
  28. [Column("F_Content")]
  29. [Display(Name = "F_Content")]
  30. public string F_Content { get; set; }
  31. [Column("F_ExportUserName")]
  32. [Display(Name = "F_ExportUserName")]
  33. public string F_ExportUserName { get; set; }
  34. [Column("F_ExportDate")]
  35. [Display(Name = "F_ExportDate")]
  36. public long F_ExportDate { get; set; }
  37. [Column("F_IsExport")]
  38. [Display(Name = "F_IsExport")]
  39. public int F_IsExport { get; set; }
  40. [Column("F_Date")]
  41. [Display(Name = "F_Date")]
  42. public long F_Date { get; set; }
  43. }
  44. }