From 84b7d5223a5f5229866a7d5686d198cca4251453 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 26 九月 2025 15:23:25 +0800 Subject: [PATCH] 代码提交,查询部门下级递归 --- ruoyi-system/src/main/java/com/ruoyi/system/model/AssetMain.java | 18 +++++++++++++++++- 1 files changed, 17 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 8be23d1..799f2d6 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 @@ -54,6 +54,10 @@ @TableField("specification_model") private String specificationModel; + @ApiModelProperty(value = "类别") + @TableField("category") + private String category; + @ApiModelProperty(value = "资产类别ID,关联asset_type表") @TableField("asset_type_id") private Integer assetTypeId; @@ -72,7 +76,7 @@ @ApiModelProperty(value = "数量") @TableField("quantity") - private BigDecimal quantity; + private Integer quantity; @ApiModelProperty(value = "单价") @TableField("unit_price") @@ -142,6 +146,18 @@ @TableField("attachment_urls") private String attachmentUrls; + @ApiModelProperty(value = "是否被处置") + @TableField("is_disposed") + private Integer disposed; + + @ApiModelProperty(value = "是否借用未归还") + @TableField("is_borrowed") + private Integer borrowed; + + @ApiModelProperty(value = "是否被领用") + @TableField("is_in_use") + private Integer inUse; + @ApiModelProperty(value = "创建时间") @TableField("create_time") private LocalDateTime createTime; -- Gitblit v1.7.1