Newer
Older
pichan-haerbin / src / main / java / com / casic / model / QueryContent.java
chaizhuang on 29 Nov 2022 584 bytes 哈尔滨燃气新增
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;
}