2026-04-09 1071f5b9d665e78cc358f19406590905d8ee9459
src/main/java/com/ruoyi/device/pojo/DeviceMaintenance.java
@@ -84,4 +84,20 @@
    @ApiModelProperty("租户id")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @ApiModelProperty("领用备件ids")
    private String sparePartsIds;
    @ApiModelProperty("使用备件列表")
    @TableField(exist = false)
    private List<SparePartUse> sparePartsUseList;
    @Data
    public static class SparePartUse {
        private Long id;
        private Integer quantity;
    }
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}