package com.doumee.core.model.openapi.request;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author 江蹄蹄
|
* @date 2023/11/23 14:03
|
*/
|
@Data
|
@ApiModel("门禁出入事件同步请求信息")
|
public class DoorEventListRequest {
|
@ApiModelProperty(value = "唯一标识" ,example = "1")
|
private Integer eventId;
|
@ApiModelProperty(value = "姓名,支持模糊匹配" )
|
private String name;
|
@ApiModelProperty(value = "身份证号" )
|
private String idNo;
|
@ApiModelProperty(value = "时间范围-开始,格式yyyy-MM-dd HH:mm:ss,如2023-11-24 09:17:11" )
|
private String startTime ;
|
@ApiModelProperty(value = "时间范围-截止,格式yyyy-MM-dd HH:mm:ss,如2023-11-24 09:17:11" )
|
private String endTime ;
|
|
|
}
|