T_Logic_Registration_Model.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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_Registration")]
  10. public class T_Logic_Registration
  11. {
  12. public T_Logic_Registration()
  13. {
  14. }
  15. [Key]
  16. [Column("F_SN")]
  17. [Display(Name = "F_SN")]
  18. public Guid F_SN { get; set; }
  19. //[Column("F_ID")]
  20. //[Display(Name = "F_ID")]
  21. //public decimal F_ID { get; set; }
  22. [Column("F_Tariff")]
  23. [Display(Name = "F_Tariff")]
  24. public string F_Tariff { get; set; }
  25. [Column("F_TaxBureau")]
  26. [Display(Name = "F_TaxBureau")]
  27. public Guid F_TaxBureau { get; set; }
  28. [Column("F_TrainClass")]
  29. [Display(Name = "F_TrainClass")]
  30. public Guid F_TrainClass { get; set; }
  31. [Column("F_EnterpriseName")]
  32. [Display(Name = "F_EnterpriseName")]
  33. public string F_EnterpriseName { get; set; }
  34. [Column("F_InvoiceType")]
  35. [Display(Name = "F_InvoiceType")]
  36. public string F_InvoiceType { get; set; }
  37. [Column("F_InvoiceInfo")]
  38. [Display(Name = "F_InvoiceInfo")]
  39. public string F_InvoiceInfo { get; set; }
  40. [Column("F_TelPhone")]
  41. [Display(Name = "F_TelPhone")]
  42. public string F_TelPhone { get; set; }
  43. [Column("F_Fax")]
  44. [Display(Name = "F_Fax")]
  45. public string F_Fax { get; set; }
  46. [Column("F_DeviceAddress")]
  47. [Display(Name = "F_DeviceAddress")]
  48. public string F_DeviceAddress { get; set; }
  49. [Column("F_BankName")]
  50. [Display(Name = "F_BankName")]
  51. public string F_BankName { get; set; }
  52. [Column("F_BankAccount")]
  53. [Display(Name = "F_BankAccount")]
  54. public string F_BankAccount { get; set; }
  55. [Column("F_InvoiceUserName")]
  56. [Display(Name = "F_InvoiceUserName")]
  57. public string F_InvoiceUserName { get; set; }
  58. [Column("F_InvoiceUserNumber")]
  59. [Display(Name = "F_InvoiceUserNumber")]
  60. public string F_InvoiceUserNumber { get; set; }
  61. [Column("F_InvoiceUserMobile")]
  62. [Display(Name = "F_InvoiceUserMobile")]
  63. public string F_InvoiceUserMobile { get; set; }
  64. [Column("F_WXUserSN")]
  65. [Display(Name = "F_WXUserSN")]
  66. public Guid F_WXUserSN { get; set; }
  67. [Column("F_Date")]
  68. [Display(Name = "F_Date")]
  69. public long F_Date { get; set; }
  70. [Column("F_IsExport")]
  71. [Display(Name = "F_IsExport")]
  72. public int F_IsExport { get; set; }
  73. [Column("F_ExportUserName")]
  74. [Display(Name = "F_ExportUserName")]
  75. public string F_ExportUserName { get; set; }
  76. [Column("F_ExportDate")]
  77. [Display(Name = "F_ExportDate")]
  78. public long F_ExportDate { get; set; }
  79. [Column("F_IsDel")]
  80. [Display(Name = "F_IsDel")]
  81. public int F_IsDel { get; set; }
  82. [Column("F_YGZStatus")]
  83. [Display(Name = "F_YGZStatus")]
  84. public string F_YGZStatus { get; set; }
  85. [Column("F_LinkMan")]
  86. [Display(Name = "F_LinkMan")]
  87. public string F_LinkMan { get; set; }
  88. [Column("F_LinkTel")]
  89. [Display(Name = "F_LinkTel")]
  90. public string F_LinkTel { get; set; }
  91. [Column("zzszyfpxe")]
  92. [Display(Name = "zzszyfpxe")]
  93. public string zzszyfpxe { get; set; }
  94. [Column("zzszyfpfs")]
  95. [Display(Name = "zzszyfpfs")]
  96. public string zzszyfpfs { get; set; }
  97. [Column("zzsppfpxe")]
  98. [Display(Name = "zzsppfpxe")]
  99. public string zzsppfpxe { get; set; }
  100. [Column("zzsppfpfs")]
  101. [Display(Name = "zzsppfpfs")]
  102. public string zzsppfpfs { get; set; }
  103. [Column("jdcxsfpxe")]
  104. [Display(Name = "jdcxsfpxe")]
  105. public string jdcxsfpxe { get; set; }
  106. [Column("jdcxsfpfs")]
  107. [Display(Name = "jdcxsfpfs")]
  108. public string jdcxsfpfs { get; set; }
  109. }
  110. }