ViewbreakfastPrice.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Models
  7. {
  8. public class ViewbreakfastPrice
  9. {
  10. /// <summary>
  11. /// 早餐表费用
  12. /// </summary>
  13. public float breakfastPrice { get; set; }
  14. /// <summary>
  15. /// 汇率
  16. /// </summary>
  17. public float DayRate { get; set; }
  18. /// <summary>
  19. /// 转化为人民币的金额
  20. /// </summary>
  21. public float RMBPrice { get; set; }
  22. /// <summary>
  23. /// C表费用
  24. /// </summary>
  25. public float PayMoney { get => payMoney; set => payMoney = value; }
  26. /// <summary>
  27. /// 酒店名称
  28. /// </summary>
  29. public string HotelName { get => hotelName; set => hotelName = value; }
  30. /// <summary>
  31. /// 币种id
  32. /// </summary>
  33. public int PaymentCurrency { get => paymentCurrency; set => paymentCurrency = value; }
  34. /// <summary>
  35. /// 城市名称
  36. /// </summary>
  37. public string City { get => city; set => city = value; }
  38. /// <summary>
  39. /// 币种名
  40. /// </summary>
  41. public string PayCurrencyName { get => payCurrencyName; set => payCurrencyName = value; }
  42. private string payCurrencyName;
  43. private float payMoney;
  44. private string hotelName;
  45. private int paymentCurrency;
  46. private string city;
  47. }
  48. }