package com.casic.model;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
@ApiModel(value = "QueryContent", description = "下发配置参数")
public class QueryContent {
    @ApiModelProperty(notes = "上传周期", dataType = "String",required= true)
    private String upload;
    @ApiModelProperty(notes = "收集周期", dataType = "String",required= true)
    private String collect;
    @ApiModelProperty(notes = "重传次数", dataType = "String",required= true)
    private String retry;
}
