|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.business.model; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
|---|
|  |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
|---|
|  |  |  | import com.doumee.service.business.third.model.LoginUserModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelColumn(name="钥匙柜编码(关联jk_cabinet)") | 
|---|
|  |  |  | private Integer cabinetId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "关联人员类型:0=司机;1=校验人员", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="关联人员类型:0=司机;1=校验人员") | 
|---|
|  |  |  | private Integer userType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "人员名称", example = "1") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String memberName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|