UserModel.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Models.Model
  7. {
  8. public class UserModel
  9. {
  10. //定位
  11. public string bdw_number { get; set; }
  12. //大底
  13. public string dadihao { get; set; }
  14. //杀码
  15. public string sh_number { get; set; }
  16. //胆码
  17. public string dm_number { get; set; }
  18. //二码和过滤
  19. public string emh { get; set; }
  20. public string emh_type { get; set; }
  21. //二码差过滤
  22. public string emc { get; set; }
  23. public string emc_type { get; set; }
  24. //二码过滤
  25. public string em { get; set; }
  26. public string em_type { get; set; }
  27. //012路过滤
  28. public string l012 { get; set; }
  29. public string l012_type { get; set; }
  30. //和值过滤
  31. public string hz { get; set; }
  32. public string hz_type { get; set; }
  33. //和尾过滤
  34. public string hw { get; set; }
  35. public string hw_type { get; set; }
  36. //跨度过滤
  37. public string kd { get; set; }
  38. public string kd_type { get; set; }
  39. //大小过滤
  40. public string dx { get; set; }
  41. public string dx_type { get; set; }
  42. //奇偶过滤
  43. public string jo { get; set; }
  44. public string jo_type { get; set; }
  45. //质合过滤
  46. public string zh { get; set; }
  47. public string zh_type { get; set; }
  48. //顺子过滤
  49. public string sz_type { get; set; }
  50. //直选类别
  51. public string z3 { get; set; }
  52. public string z6 { get; set; }
  53. }
  54. }