From 17d7043f10d55429db919238fe639bff1b51ec0e Mon Sep 17 00:00:00 2001 From: liukangdong <898885815@qq.com> Date: 星期五, 07 二月 2025 15:59:37 +0800 Subject: [PATCH] Merge branch '2.0.1' of http://139.186.142.91:10010/r/productDev/funingyunwei into 2.0.1 --- server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/YwStocktakingRecord.java | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 48 insertions(+), 1 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/YwStocktakingRecord.java b/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/YwStocktakingRecord.java index 24f9096..6672876 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/YwStocktakingRecord.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/model/YwStocktakingRecord.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.core.model.LoginUserModel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import com.baomidou.mybatisplus.annotation.IdType; @@ -19,7 +21,7 @@ @Data @ApiModel("杩愮淮鐩樼偣鏄庣粏璁板綍琛�") @TableName("`yw_stocktaking_record`") -public class YwStocktakingRecord { +public class YwStocktakingRecord extends LoginUserModel { @TableId(type = IdType.AUTO) @ApiModelProperty(value = "涓婚敭", example = "1") @@ -89,4 +91,49 @@ @ExcelColumn(name="鐩樼偣璁″垝缂栫爜(鍏宠仈yw_stocktaking)") private Integer stocktakingId; + @ApiModelProperty(value = "璧勪骇缂栫爜") + @TableField(exist = false) + private String materialCode; + + @ApiModelProperty(value = "璧勪骇鍚嶇О") + @TableField(exist = false) + private String materialName; + + @ApiModelProperty(value = "璧勪骇鏉″舰鐮�") + @TableField(exist = false) + private String materialQrcode; + + @ApiModelProperty(value = "璧勪骇鍝佺墝") + @TableField(exist = false) + private String materialBrand; + + @ApiModelProperty(value = "璧勪骇瑙勬牸鍨嬪彿") + @TableField(exist = false) + private String materialAttr; + + @ApiModelProperty(value = "璧勪骇鍗曚綅") + @TableField(exist = false) + private String materialUnitName; + + @ApiModelProperty(value = "浠撳簱鍚嶇О") + @TableField(exist = false) + private String warehouseName; + + @ApiModelProperty(value = "鐩樼偣浜哄悕绉�") + @TableField(exist = false) + private String userName; + + @ApiModelProperty(value = "鐩樼偣浜虹粍缁囧悕绉�") + @TableField(exist = false) + private String companyName; + + + + + + + + + + } -- Gitblit v1.9.3