代码提交

This commit is contained in:
2023-06-15 09:45:27 +08:00
parent f1a71e8855
commit 7bc2fe684b
4 changed files with 42 additions and 10 deletions

View File

@@ -7,6 +7,7 @@ import lombok.EqualsAndHashCode;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.List;
/**
* 类的介绍:
@@ -36,7 +37,6 @@ public class EleEpdPqdParam {
private String type;
@ApiModelProperty(value = "相别")
@NotBlank(message="相别不能为空!")
private String phase;
@ApiModelProperty(value = "单位")
@@ -53,7 +53,7 @@ public class EleEpdPqdParam {
private String classId;
@ApiModelProperty(value = "数据统计方法")
private String statMethod;
private List<String> statMethod;
@ApiModelProperty(value = "系统类别")
private String systemType;
@@ -113,7 +113,10 @@ public class EleEpdPqdParam {
@EqualsAndHashCode(callSuper = true)
public static class EleEpdPqdQueryParam extends BaseParam {
@ApiModelProperty("dataType")
private String dataType;
private List<String> dataType;
@ApiModelProperty("classId")
private List<String> classId;
}
}