mitao
2024-12-17 ab7b8b5e702989d894620c41fbaa0e2d6904ecd5
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
package com.sinata.system.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author mitao
 * @date 2024/12/17
 */
@Data
@ApiModel("处置显示统计视图对象")
public class DisposalRecordStaticsVO {
    
    @ApiModelProperty("医疗废物接收箱数")
    private Integer receiveQuantity;
 
    @ApiModelProperty("医疗废物接口重量")
    private BigDecimal receiveWeight;
 
    @ApiModelProperty("医疗废物卸车箱数")
    private Integer unloadQuantity;
 
    @ApiModelProperty("医疗废物卸车重量")
    private BigDecimal unloadWeight;
 
    @ApiModelProperty("医疗废物处置箱数")
    private Integer totalHandledQuantity;
 
    @ApiModelProperty("医疗废物处置总量")
    private BigDecimal totalHandledWeight;
}