package com.ycl.vo.cockpit;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
|
/**
|
* @author Lyq
|
* @version 1.0
|
* @date 2022/10/26
|
*/
|
public class CockpitVO {
|
@Data
|
@ApiModel
|
public static class Params1VO {
|
@ApiModelProperty(value = "appId", example = "1")
|
@NotBlank(message = "appId不能为空")
|
private String appId;
|
@ApiModelProperty(value = "appKey", example = "1")
|
@NotBlank(message = "appKey不能为空")
|
private String appKey;
|
private String sign;
|
}
|
|
@Data
|
@ApiModel
|
public static class Params2VO {
|
@ApiModelProperty(value = "appId", example = "1")
|
@NotBlank(message = "appId不能为空")
|
private String appId;
|
@ApiModelProperty(value = "appKey", example = "1")
|
@NotBlank(message = "appKey不能为空")
|
private String appKey;
|
private String sign;
|
@ApiModelProperty(value = "开始时间,格式yyyy-MM-dd hh:mm:ss")
|
private String beginTime;
|
@ApiModelProperty(value = "结束时间,格式yyyy-MM-dd hh:mm:ss")
|
private String endTime;
|
}
|
}
|