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.Request
|
2024-04-29 17:57:07 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class TransactionGetRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 开始时间 必填 开始时间结束时间跨度不得超过一个月 格式:%Y-%m-%d %H:%M:%S 示例:2018-04-25 00:00:01
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string starttime { set; get; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 结束时间 必填
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string endtime { set; get; }
|
|
|
|
|
|
public string pin { set; get; }
|
|
|
|
|
|
public string sn { set; get; }
|
|
|
|
|
|
public long? id { set; get; }
|
|
|
|
|
|
public int? number { set; get; }
|
|
|
|
|
|
public int? uploadPic { set; get; }
|
|
|
|
|
|
public int? getTemperature { set; get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|