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