MrShi
2 天以前 eb82684152ffb0acddf67da92e4533a0190eb258
server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/JkIccard.java
@@ -1,5 +1,6 @@
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;
@@ -23,6 +24,7 @@
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelColumn(name="主键")
    @TableId(type = IdType.AUTO)
    private Integer id;
    @ApiModelProperty(value = "创建人编码", example = "1")
@@ -71,4 +73,12 @@
    @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;
}