1.技术监督,终端入网监测,监测点台账录入,监测点联调增加模糊搜索功能
2.电能质量问题,用户投诉新增增加责任部门 3.预告单增加责任部门列
This commit is contained in:
@@ -26,6 +26,9 @@ public class SupervisionUserComplaintParam {
|
||||
@ApiModelProperty(value = "用户名称")
|
||||
private String userName;
|
||||
|
||||
@ApiModelProperty(value = "责任单位id,取ISC平台上的组织id")
|
||||
private String dutyOrgId;
|
||||
|
||||
@ApiModelProperty(value = "投诉名称")
|
||||
private String complaintName;
|
||||
|
||||
|
||||
@@ -45,6 +45,15 @@ public class SupervisionUserComplaintPO extends BaseEntity {
|
||||
@TableField(value = "user_name")
|
||||
private String userName;
|
||||
|
||||
/**
|
||||
* 责任单位id,取ISC平台上的组织id
|
||||
*/
|
||||
@TableField(value = "duty_Org_Id")
|
||||
private String dutyOrgId;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String dutyOrgName;
|
||||
|
||||
/**
|
||||
* 投诉名称
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.njcn.supervision.pojo.vo.leaflet;
|
||||
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -94,4 +93,12 @@ public class WarningLeafletVO extends BaseEntity implements Serializable{
|
||||
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 责任单位id,取ISC平台上的组织id
|
||||
*/
|
||||
private String dutyOrgId;
|
||||
/**
|
||||
* 责任单位名称
|
||||
*/
|
||||
private String dutyOrgName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user