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;
|
}
|