51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|