HotelDataView.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using OASystem.Domain.Attributes;
  2. using OASystem.Domain.Entities.Resource;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace OASystem.Domain.ViewModels.Resource
  9. {
  10. public class HotelDataView:Res_HotelData
  11. {
  12. }
  13. public class QueryHotelDataSelect {
  14. /// <summary>
  15. /// id
  16. /// </summary>
  17. public int Id { get; set; }
  18. /// <summary>
  19. /// 城市名
  20. /// </summary>
  21. public string City { get; set; }
  22. }
  23. public class HotelDataInfoView
  24. {
  25. public int id { get; set; }
  26. [Encrypted]
  27. public string city { get; set; }
  28. [Encrypted]
  29. public string name { get; set; }
  30. [Encrypted]
  31. public string tel { get; set; }
  32. [Encrypted]
  33. public string fax { get; set; }
  34. [Encrypted]
  35. public string contact { get; set; }
  36. [Encrypted]
  37. public string contactPhone { get; set; }
  38. [Encrypted]
  39. public string level { get; set; }
  40. [Encrypted]
  41. public string address { get; set; }
  42. [Encrypted]
  43. public string otherInformation { get; set; }
  44. public string remark { get; set; }
  45. }
  46. public class HotelDataItemView
  47. {
  48. public int Row_Number { get; set; }
  49. public int Id { get; set; }
  50. [Encrypted]
  51. public string City { get; set; }
  52. [Encrypted]
  53. public string Name { get; set; }
  54. [Encrypted]
  55. public string Tel { get; set; }
  56. [Encrypted]
  57. public string Fax { get; set; }
  58. [Encrypted]
  59. public string Contact { get; set; }
  60. public string CreateUserName { get; set; }
  61. [Encrypted]
  62. public string ContactPhone { get; set; }
  63. public DateTime CreateTime { get; set; }
  64. }
  65. }