Newer
Older
huludao / src / main / java / com / newfiber / modules / inspection / response / InspectionItemStatisResponse.java
@新烽开发者 新烽开发者 on 22 Jul 864 bytes init
package com.newfiber.modules.inspection.response;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
public class InspectionItemStatisResponse {

        /**
         * 检测项编号
         */
        @ApiModelProperty(name = "itemId", value = "检测项编号", position = 50)
        private Integer itemId;

        /**
         * 检测项名称
         */
        @ApiModelProperty(name = "itemName", value = "检测项名称", position = 60)
        private String itemName;

        /**
         * 正常次数
         */
        @ApiModelProperty(name = "normalCount", value = "正常次数", position = 50)
        private Integer normalCount;

        /**
         * 异常次数
         */
        @ApiModelProperty(name = "abnormalCount", value = "异常次数", position = 50)
        private Integer abnormalCount;

}