| 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; | 
| } |