初始化

This commit is contained in:
2025-11-20 15:56:30 +08:00
commit ab6e620f8e
154 changed files with 29677 additions and 0 deletions

28
BLWWS_BLL/Uploadinfo.cs Normal file
View File

@@ -0,0 +1,28 @@
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; }
}
}