1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Models
- {
- public class ViewbreakfastPrice
- {
- /// <summary>
- /// 早餐表费用
- /// </summary>
- public float breakfastPrice { get; set; }
- /// <summary>
- /// 汇率
- /// </summary>
- public float DayRate { get; set; }
- /// <summary>
- /// 转化为人民币的金额
- /// </summary>
- public float RMBPrice { get; set; }
- /// <summary>
- /// C表费用
- /// </summary>
- public float PayMoney { get => payMoney; set => payMoney = value; }
- /// <summary>
- /// 酒店名称
- /// </summary>
- public string HotelName { get => hotelName; set => hotelName = value; }
- /// <summary>
- /// 币种id
- /// </summary>
- public int PaymentCurrency { get => paymentCurrency; set => paymentCurrency = value; }
- /// <summary>
- /// 城市名称
- /// </summary>
- public string City { get => city; set => city = value; }
- /// <summary>
- /// 币种名
- /// </summary>
- public string PayCurrencyName { get => payCurrencyName; set => payCurrencyName = value; }
- private string payCurrencyName;
- private float payMoney;
- private string hotelName;
- private int paymentCurrency;
- private string city;
- }
- }
|