fxkh-txl-service/src/main/java/com/whdc/model/dto/GroupWarningDto.java

36 lines
957 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.whdc.model.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
* Description:
* Created by XuSan on 2024/5/23.
*
* @author XuSan
* @version 1.0
*/
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Data
public class GroupWarningDto extends FindPageDto{
@ApiModelProperty(value = "开始时间, 格式应为yyyy-MM-dd HH:mm:ss", dataType = "java.lang.String", example = "2023-06-15 08:00:00")
private String startTime;
@ApiModelProperty(value = "结束时间, 格式应为yyyy-MM-dd HH:mm:ss", dataType = "java.lang.String", example = "2023-06-15 08:00:00")
private String endTime;
@ApiModelProperty(value = "发布单位")
private String publishUnit;
@ApiModelProperty(value = "类型")
private String warnSignalType;
@ApiModelProperty(value = "级别")
private String warnSignalLevel;
}