jiangping
2023-11-30 a8a5c4f0dcf32a85c584d78ccfa5c98cdc078119
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.doumee.model.request.erp;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 分类信息表
 * @author 江蹄蹄
 * @date 2023/11/23 14:03
 */
@Data
@ApiModel("人员同步接口请求信息")
public class UserListRequest {
    @ApiModelProperty(value = "人员唯一标识(ERP端ID)" ,example = "1")
    private Integer id;
    @ApiModelProperty(value = "组织唯一标识(ERP端ID)" ,example = "1")
    private Integer orgId;
    @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 ;
}