无关风月
2 天以前 9d1a18030d8f82aa264d1378186eb00c31c9af20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.ruoyi.system.vo;
 
import com.ruoyi.system.model.OaNotification;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "资产汇总分页返回VO")
public class AssetStatisticsVO implements Serializable {
 
    @ApiModelProperty(value = "资产大类名称")
    private String assetTypeNameFirst;
    @ApiModelProperty(value = "资产大类id")
    private Integer assetTypeIdFirst;
    @ApiModelProperty(value = "资产子类名称")
    private String assetTypeNameSecond;
    @ApiModelProperty(value = "资产子类id")
    private Integer assetTypeIdSecond;
    @ApiModelProperty(value = "合计数量")
    private Integer totalCount;
    @ApiModelProperty(value = "闲置数量")
    private Integer idleCount;
    @ApiModelProperty(value = "使用中数量")
    private Integer useCount;
    @ApiModelProperty(value = "损坏/报废数量")
    private Integer disposeCount;
    @ApiModelProperty(value = "其他数量")
    private Integer otherCount;
    @ApiModelProperty(value = "合计总价")
    private BigDecimal totalValue;
}