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

namespace OASystem.Domain.ViewModels.Resource
{
    public class HotelDataView:Res_HotelData
    {
    }
    public class QueryHotelDataSelect {
        /// <summary>
        /// id
        /// </summary>
        public int Id { get; set; }

        /// <summary>
        /// 城市名
        /// </summary>
        [Encrypted]
        public string City { get; set; }
    }

    public class HotelDataInfoView
    {
        public int id { get; set; }

        [Encrypted]
        public string city { get; set; }

        [Encrypted]
        public string name { get; set; }

        [Encrypted]
        public string tel { get; set; }

        [Encrypted]
        public string fax { get; set; }

        [Encrypted]
        public string contact { get; set; }

        [Encrypted]
        public string contactPhone { get; set; }

        [Encrypted]
        public string level { get; set; }
        [Encrypted]
        public string address { get; set; }

        [Encrypted]
        public string otherInformation { get; set; }

        public string remark { get; set; }

    }

    public class HotelDataItemView
    {
        public int Row_Number { get; set; }

        public int Id { get; set; }

        [Encrypted]
        public string City { get; set; }

        [Encrypted]
        public string Name { get; set; }

        [Encrypted]
        public string Tel { get; set; }

        [Encrypted]
        public string Fax { get; set; }

        [Encrypted]
        public string Contact { get; set; }

        public string CreateUserName { get; set; }

        [Encrypted]
        public string ContactPhone { get; set; }


        public DateTime CreateTime { get; set; }
    }

}