Files
2025-11-26 13:45:58 +08:00

51 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Face.Web.Areas.App.Models
{
public class InfoBody
{
/// <summary>
/// //ID,验证人员唯一性的字段
/// </summary>
public string id { get; set; }
/// <summary>
/// //人员的名字
/// </summary>
public string name { get; set; }
/// <summary>
/// //作为维根号发送到闸机
/// </summary>
public string ic_no { get; set; }
/// <summary>
/// //员工身份证号
/// </summary>
public string id_no { get; set; }
/// <summary>
/// //JPG头像照片要求宽高640x480像素转为Base64字符串传输最大支持1080x1080
/// </summary>
public string photo { get; set; }
/// <summary>
/// 起始时间
/// </summary>
public string startTs { get; set; }
/// <summary>
/// 截止时间
/// </summary>
public string endTs { get; set; }
/// <summary>
/// //在有效时间戳内最大过闸次数。当此值设置等于10000时代表可以无限次过闸,默认:10000
/// </summary>
public string passCount { get; set; }
/// <summary>
/// //true-是访客false-非访客默认false兼容以前协议
/// </summary>
public string visitor { get; set; }
/// <summary>
/// 以周为单位设置每 天不同的时间段
/// </summary>
public string weekly { get; set; }
}
}