HotelDataView.cs 1.5 KB

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