using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Face.Web.Areas.App.Models { public static class peopleInfo { /// /// 证件类型 /// public static string idtype { get; set; } /// /// 身份证号码 /// public static string idcard { get; set; } /// /// 顾客名字 /// public static string customer { get; set; } /// /// 性别 /// public static string sex { get; set; } /// /// 国家 /// public static string country { get; set; } /// /// 创建时间 /// public static string checkindate { get; set; } } }