T_Logic_WXUserLinkCustomer_Model.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_WXUserLinkCustomer")]
  10. public class T_Logic_WXUserLinkCustomer
  11. {
  12. public T_Logic_WXUserLinkCustomer()
  13. {
  14. }
  15. [Key]
  16. [Column("F_SN")]
  17. [Display(Name = "F_SN")]
  18. public Guid F_SN { get; set; }
  19. [Column("F_WXUserSN")]
  20. [Display(Name = "F_WXUserSN")]
  21. public Guid F_WXUserSN { get; set; }
  22. [Column("F_CustomerSN")]
  23. [Display(Name = "F_CustomerSN")]
  24. public Guid F_CustomerSN { get; set; }
  25. [Column("F_Status")]
  26. [Display(Name = "F_Status")]
  27. public int F_Status { get; set; }
  28. [Column("F_UpdateTime")]
  29. [Display(Name = "F_UpdateTime")]
  30. public long F_UpdateTime { get; set; }
  31. [Column("F_SNo")]
  32. [Display(Name = "F_SNo")]
  33. public string F_SNo { get; set; }
  34. }
  35. }