合并代码
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.njcn.event.pojo.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <功能描述>
|
||||
*
|
||||
* @author wr
|
||||
* @createTime: 2022-12-13
|
||||
*/
|
||||
@Data
|
||||
public class DeptLevelVO implements Serializable {
|
||||
|
||||
private String id;
|
||||
private String pid;
|
||||
private String pids;
|
||||
private String name;
|
||||
private String code;
|
||||
private Integer specialType;
|
||||
private String area;
|
||||
private String remark;
|
||||
private Integer sort;
|
||||
private Integer type;
|
||||
|
||||
//子孙部门
|
||||
List<DeptLevelVO> deptList;
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
package com.njcn.event.pojo.vo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDate;
|
||||
|
||||
/**
|
||||
* <功能描述>
|
||||
*
|
||||
* @author wr
|
||||
* @createTime: 2022-12-14
|
||||
*/
|
||||
@Data
|
||||
public class RStatEventVO {
|
||||
|
||||
@ApiModelProperty(value = "单位ID")
|
||||
private String orgNo;
|
||||
|
||||
@ApiModelProperty(value = "暂态指标类型Id,字典表ID")
|
||||
private String eventType;
|
||||
|
||||
@ApiModelProperty(value = "日均发生暂态监测点数(根据 发生暂态监测点数 取平均值)")
|
||||
private Integer eventMeasurementAverage;
|
||||
|
||||
@ApiModelProperty(value = "累计发生暂态监测点数(监测点暂态指标超标明细日表)")
|
||||
private Integer eventMeasurementAccrued;
|
||||
|
||||
@ApiModelProperty(value = "暂态指标发生频次(日表的暂态指标发生次数之和/日表的发生暂态监测点数之和)")
|
||||
private Float eventFreq;
|
||||
|
||||
@ApiModelProperty(value = "暂态指标发生次数(日表的暂态指标发生次数之和)")
|
||||
private Integer eventCount;
|
||||
|
||||
@ApiModelProperty(value = "日均发生暂态监测点数占比(根据 日均发生暂态监测点数占比 取平均值)")
|
||||
private Float eventMeasurementRatioAverage;
|
||||
|
||||
@ApiModelProperty(value = "累计发生暂态监测点数占比(此表的累计发生暂态监测点数/区域统计表中的区域分类统计月表中的发生暂态的监测点数)")
|
||||
private Float eventMeasurementRatioAccrued;
|
||||
|
||||
@ApiModelProperty(value = "数据类型,字典表(01:主网测点 02:配网测点)")
|
||||
private String dataType;
|
||||
}
|
||||
Reference in New Issue
Block a user