Files
Web_PMSApi_Server_V1_Prod/BLWWS_BLL/Uploadinfo.cs

29 lines
579 B
C#
Raw Normal View History

2025-11-20 15:56:30 +08:00
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; }
}
}