using OASystem.Domain.Entities.Groups;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OASystem.Domain.ViewModels.Groups
{
    /// <summary>
    /// 酒店询价 view
    /// </summary>
    public class HotelInquiryView:Grp_HotelInquiry
    {
    }

    public class HotelInquiryItemView
    {
        public int id { get; set; }
        public int diId { get; set; }
        public string city { get; set; }
        public string name { get; set; }
        public DateTime selectDt { get; set; }
        public DateTime checkInDate { get; set; }
        public DateTime checkOutDate { get; set; }
        public decimal singlePrice { get; set; }
        public int singleQuantity { get; set; }
        public string singleCurrency { get; set; }
        public decimal doublePrice { get; set; }
        public int doubleQuantity { get; set; }
        public string doubleCurrency { get; set; }
        public decimal suitePrice { get; set; }
        public int suiteQuantity { get; set; }
        public string suiteCurrency { get; set; }
        public decimal otherPrice { get; set; }
        public int otherQuantity { get; set; }
        public string otherCurrency { get; set; }
        public string remark { get; set; }
        public string createUserName { get; set; }
        public DateTime createTime { get; set; }
    }

}