29 lines
579 B
C#
29 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BLWWS_BLL
|
|
{
|
|
public class Uploadinfo
|
|
{
|
|
|
|
public string key { get; set; }
|
|
public string code { get; set; }
|
|
public long checkInID { get; set; }
|
|
public int idType { get; set; }
|
|
public string idCard { get; set; }
|
|
|
|
|
|
public int sex { get; set; }
|
|
public string name { get; set; }
|
|
|
|
public string birthday { get; set; }
|
|
|
|
public string photoUrl { get; set; }
|
|
public string photo { get; set; }
|
|
|
|
|
|
}
|
|
}
|