pms pq修改
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
package com.njcn.harmonic.pojo.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
*
|
||||
* @author cdf
|
||||
* @date 2023/5/31
|
||||
*/
|
||||
@Data
|
||||
public class FpyReportDTO {
|
||||
|
||||
@ApiModelProperty(name = "lineId",value = "监测点id")
|
||||
private String lineId;
|
||||
|
||||
@ApiModelProperty(name = "lineName",value = "监测点名称")
|
||||
private String lineName;
|
||||
|
||||
@ApiModelProperty(name = "subId",value = "变电站id")
|
||||
private String subId;
|
||||
|
||||
@ApiModelProperty(name = "subName",value = "变电站名称")
|
||||
private String subName;
|
||||
|
||||
@ApiModelProperty(name = "voltageScale",value = "监测点电压等级")
|
||||
private String voltageScale;
|
||||
|
||||
|
||||
@ApiModelProperty(name = "ct1",value = "ct1")
|
||||
private Integer ct1;
|
||||
|
||||
@ApiModelProperty(name = "ct2",value = "ct2")
|
||||
private Integer ct2;
|
||||
|
||||
@ApiModelProperty(name = "pt1",value = "pt1")
|
||||
private Integer pt1;
|
||||
|
||||
@ApiModelProperty(name = "pt2",value = "pt2")
|
||||
private Integer pt2;
|
||||
|
||||
@ApiModelProperty(name = "loadType",value = "干扰源类型")
|
||||
private String loadType;
|
||||
|
||||
@ApiModelProperty(name = "businessType",value = "行业类型")
|
||||
private String businessType;
|
||||
|
||||
@ApiModelProperty(name = "dealCapacity",value = "协议容量")
|
||||
private Float dealCapacity;
|
||||
|
||||
@ApiModelProperty(name = "shortCapacity",value = "短路容量")
|
||||
private Float shortCapacity;
|
||||
|
||||
@ApiModelProperty(name = "deviceCapacity",value = "设备容量")
|
||||
private Float deviceCapacity;
|
||||
|
||||
@ApiModelProperty(name = "standardCapacity",value = "基准容量")
|
||||
private Float standardCapacity;
|
||||
|
||||
@ApiModelProperty(name = "calssificationGrade",value = "分类等级")
|
||||
private String calssificationGrade;
|
||||
|
||||
@ApiModelProperty(name = "superiorsSubstation",value = "上级电站")
|
||||
private String superiorsSubstation;
|
||||
|
||||
@ApiModelProperty(name = "hangLine",value = "挂接线路")
|
||||
private String hangLine;
|
||||
|
||||
private Float integrityValue;
|
||||
|
||||
private String harmDes;
|
||||
|
||||
private String powerDes;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.njcn.harmonic.pojo.param;
|
||||
|
||||
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
*
|
||||
* @author cdf
|
||||
* @date 2023/5/31
|
||||
*/
|
||||
@Data
|
||||
public class QualifiedReportParam extends BaseParam {
|
||||
|
||||
@ApiModelProperty(name = "deptId",value = "部门id")
|
||||
@NotBlank(message = "部门索引不可为空")
|
||||
private String deptId;
|
||||
|
||||
@ApiModelProperty(name = "beginTime",value = "开始时间")
|
||||
@DateTimeStrValid(message = "开始时间格式有误")
|
||||
@NotBlank(message = "开始时间不可为空")
|
||||
private String beginTime;
|
||||
|
||||
@ApiModelProperty(name = "endTime",value = "结束时间")
|
||||
@DateTimeStrValid(message = "结束时间格式有误")
|
||||
@NotBlank(message = "结束时间不可为空")
|
||||
private String endTime;
|
||||
}
|
||||
Reference in New Issue
Block a user