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

import io.swagger.annotations.ApiModelProperty;
import java.util.List;
import lombok.Data;

@Data
public class InspectionStatisResponse {

    /**
     * 设备编号
     */
    @ApiModelProperty(name = "equNo", value = "设备编号", position = 40)
    private String equNo;

    /**
     * 设备名称
     */
    @ApiModelProperty(name = "equName", value = "设备名称", position = 50)
    private String equName;

    /**
     * 巡检次数
     */
    @ApiModelProperty(name = "inspectionCount", value = "巡检次数", position = 50)
    private Integer inspectionCount;

    /**
     * 巡检检测项
     */
    @ApiModelProperty(name = "inspectionItemStatisResponseList", value = "巡检检测项", position = 50)
    private List<InspectionItemStatisResponse> inspectionItemStatisResponseList;
}