HotelInquiryView.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using OASystem.Domain.Entities.Groups;
  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.Groups
  8. {
  9. /// <summary>
  10. /// 酒店询价 view
  11. /// </summary>
  12. public class HotelInquiryView:Grp_HotelInquiry
  13. {
  14. }
  15. public class HotelInquiryItemView
  16. {
  17. public int id { get; set; }
  18. public int diId { get; set; }
  19. public string city { get; set; }
  20. public string name { get; set; }
  21. public DateTime selectDt { get; set; }
  22. public DateTime checkInDate { get; set; }
  23. public DateTime checkOutDate { get; set; }
  24. public decimal singlePrice { get; set; }
  25. public int singleQuantity { get; set; }
  26. public string singleCurrency { get; set; }
  27. public decimal doublePrice { get; set; }
  28. public int doubleQuantity { get; set; }
  29. public string doubleCurrency { get; set; }
  30. public decimal suitePrice { get; set; }
  31. public int suiteQuantity { get; set; }
  32. public string suiteCurrency { get; set; }
  33. public decimal otherPrice { get; set; }
  34. public int otherQuantity { get; set; }
  35. public string otherCurrency { get; set; }
  36. public string remark { get; set; }
  37. public string createUserName { get; set; }
  38. public DateTime createTime { get; set; }
  39. }
  40. }