From 853c8ba11072eae475273864e61733ae7294f004 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期四, 25 九月 2025 11:55:44 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-system/src/main/java/com/ruoyi/system/model/AssetMain.java | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/model/AssetMain.java b/ruoyi-system/src/main/java/com/ruoyi/system/model/AssetMain.java index 7c6da6b..2d7def2 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/model/AssetMain.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/model/AssetMain.java @@ -76,7 +76,7 @@ @ApiModelProperty(value = "数量") @TableField("quantity") - private BigDecimal quantity; + private Integer quantity; @ApiModelProperty(value = "单价") @TableField("unit_price") @@ -97,6 +97,9 @@ @ApiModelProperty(value = "使用人") @TableField("user_name") private String userName; + + @ApiModelProperty(value = "位置类型 0-部门,1-仓库,2-录入地址") + private Integer addressType; @ApiModelProperty(value = "使用部门/位置ID") @TableField("use_dept_id") @@ -178,5 +181,8 @@ @TableField("disabled") private Boolean disabled; + @ApiModelProperty(value = "使用部门/位置") + @TableField(exist = false) + private String useDeptOrLocation; } -- Gitblit v1.7.1