1.监测评分权重,新增字段添加

2.企业概览页面接口 在线率、畸变率和暂降次数
This commit is contained in:
wr
2023-08-31 15:32:49 +08:00
parent 9b7341aa3d
commit 9f38947e28
14 changed files with 194 additions and 27 deletions

View File

@@ -41,6 +41,14 @@ public class PqsLineWeight {
@ApiModelProperty("通讯费用评分")
private Integer communFeeMark;
/**
* 资产归属评分
*/
@TableField("ASSET_BELONG")
@ApiModelProperty("资产归属评分")
private Integer assetBelong;
/**
* 服务条款评分
*/

View File

@@ -1,6 +1,7 @@
package com.njcn.device.pq.pojo.vo;
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableField;
import com.njcn.device.pq.pojo.po.PqsLineWeight;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -70,6 +71,10 @@ public class PqsLineWeightVo extends PqsLineWeight {
@NotNull(message = "通讯费用评分不为空")
private Integer communFeeMark;
@Excel(name ="资产归属评分",width = 15)
@NotNull(message ="资产归属评分")
private Integer assetBelong;
@Excel(name ="服务条款评分",width = 15)
@NotNull(message = "服务条款评分不为空")
private Integer serviceMark;