HotelDataView.cs 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 HotelDataItemView
  23. {
  24. public int Row_Number { get; set; }
  25. public int Id { get; set; }
  26. public string City { get; set; }
  27. public string Name { get; set; }
  28. public string Tel { get; set; }
  29. public string Fax { get; set; }
  30. public string Contact { get; set; }
  31. public string CreateUserName { get; set; }
  32. public string ContactPhone { get; set; }
  33. public DateTime CreateTime { get; set; }
  34. }
  35. }