From eb82684152ffb0acddf67da92e4533a0190eb258 Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期五, 10 十月 2025 18:27:31 +0800 Subject: [PATCH] 对接口 --- server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/JkIccard.java | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/JkIccard.java b/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/JkIccard.java index ec888cf..c4f781e 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/JkIccard.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/JkIccard.java @@ -1,6 +1,8 @@ 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; import io.swagger.annotations.ApiModelProperty; import com.baomidou.mybatisplus.annotation.IdType; @@ -18,10 +20,11 @@ @Data @ApiModel("閽ュ寵鏌淚C鍗′俊鎭〃") @TableName("`jk_iccard`") -public class JkIccard { +public class JkIccard extends LoginUserModel { @ApiModelProperty(value = "涓婚敭", example = "1") @ExcelColumn(name="涓婚敭") + @TableId(type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "鍒涘缓浜虹紪鐮�", example = "1") @@ -70,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; + } -- Gitblit v1.9.3