HotelDataView.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. [Encrypted]
  22. public string City { get; set; }
  23. }
  24. public class HotelDataInfoView
  25. {
  26. public int id { get; set; }
  27. [Encrypted]
  28. public string city { get; set; }
  29. [Encrypted]
  30. public string name { get; set; }
  31. [Encrypted]
  32. public string tel { get; set; }
  33. [Encrypted]
  34. public string fax { get; set; }
  35. [Encrypted]
  36. public string contact { get; set; }
  37. [Encrypted]
  38. public string contactPhone { get; set; }
  39. [Encrypted]
  40. public string level { get; set; }
  41. [Encrypted]
  42. public string address { get; set; }
  43. [Encrypted]
  44. public string otherInformation { get; set; }
  45. public string remark { get; set; }
  46. }
  47. public class HotelDataItemView
  48. {
  49. public int Row_Number { get; set; }
  50. public int Id { get; set; }
  51. [Encrypted]
  52. public string City { get; set; }
  53. [Encrypted]
  54. public string Name { get; set; }
  55. [Encrypted]
  56. public string Tel { get; set; }
  57. [Encrypted]
  58. public string Fax { get; set; }
  59. [Encrypted]
  60. public string Contact { get; set; }
  61. public string CreateUserName { get; set; }
  62. [Encrypted]
  63. public string ContactPhone { get; set; }
  64. public DateTime CreateTime { get; set; }
  65. }
  66. }