2024-04-29 17:57:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2024-05-15 13:56:09 +08:00
|
|
|
|
namespace E_ZKEcc.Response
|
2024-04-29 17:57:07 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class TransactionGetResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
|
public string pin { get; set; }
|
|
|
|
|
|
public string ename { get; set; }
|
|
|
|
|
|
public string deptnumber { get; set; }
|
|
|
|
|
|
public string deptname { get; set; }
|
|
|
|
|
|
public string checktime { get; set; }
|
|
|
|
|
|
public string sn { get; set; }
|
|
|
|
|
|
public string alias { get; set; }
|
|
|
|
|
|
public int verify { get; set; }
|
|
|
|
|
|
public string stateno { get; set; }
|
|
|
|
|
|
public string state { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|