Files
Web_Faces_Prod/Face.Web/Areas/App/Models/peopleInfo.cs

35 lines
891 B
C#
Raw Normal View History

2025-11-25 17:41:24 +08:00
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; }
}
}