package com.artfess.yhxt.thirdparty.vo;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
public class TpDeviceCountVo {

    @ApiModelProperty(name = "vibeCount", notes = "环境设备数量")
    private Integer vibeCount = 0;
    @ApiModelProperty(name = "motiveCount", notes = "作用设备数量")
    private Integer motiveCount = 0;
    @ApiModelProperty(name = "structuralCount", notes = "结构响应设备数量")
    private Integer structuralCount = 0;
    @ApiModelProperty(name = "varyCount", notes = "结构变化数量")
    private Integer varyCount = 0;


}
