48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OrmContrast.Entity
|
|||
|
|
{
|
|||
|
|
public class hotelacc
|
|||
|
|
{
|
|||
|
|
public long hid { get; set; }
|
|||
|
|
public string name { get; set; }
|
|||
|
|
public string cardno { get; set; }
|
|||
|
|
public string descriot { get; set; }
|
|||
|
|
public string ctftp { get; set; }
|
|||
|
|
public string ctfid { get; set; }
|
|||
|
|
public string gender { get; set; }
|
|||
|
|
public string birthday { get; set; }
|
|||
|
|
public string address { get; set; }
|
|||
|
|
public string zip { get; set; }
|
|||
|
|
public string dirty { get; set; }
|
|||
|
|
public string district1 { get; set; }
|
|||
|
|
public string district2 { get; set; }
|
|||
|
|
public string district3 { get; set; }
|
|||
|
|
public string district4 { get; set; }
|
|||
|
|
public string district5 { get; set; }
|
|||
|
|
public string district6 { get; set; }
|
|||
|
|
public string firstnm { get; set; }
|
|||
|
|
public string lastnm { get; set; }
|
|||
|
|
public string duty { get; set; }
|
|||
|
|
public string mobile { get; set; }
|
|||
|
|
public string tel { get; set; }
|
|||
|
|
public string fax { get; set; }
|
|||
|
|
public string email { get; set; }
|
|||
|
|
public string nation { get; set; }
|
|||
|
|
public string taste { get; set; }
|
|||
|
|
public string education { get; set; }
|
|||
|
|
public string company { get; set; }
|
|||
|
|
public string ctel { get; set; }
|
|||
|
|
public string caddress { get; set; }
|
|||
|
|
public string czip { get; set; }
|
|||
|
|
public string family { get; set; }
|
|||
|
|
public string version { get; set; }
|
|||
|
|
public string id { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|