weimingfei
2 天以前 9958c9393c8c3a5e2350fa9023e14cbbf74b0d9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.dao.business.dto;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import com.doumee.service.business.third.model.LoginUserModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/10/11 16:01
 */
@Data
public class QueryUserByCodeDTO {
 
    @ApiModelProperty(value = "IC卡号")
    private String code;
 
    @ApiModelProperty(value = "关联人员类型:0=司机;1=校验人员", example = "1")
    private Integer userType;
}