1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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; }
- }
- }
|