草稿功能各个页面开发引起的查询bug,预告警单新增整改意见字段
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.njcn.supervision.pojo.param.leaflet;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2024/6/20 9:37【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class WarningAddParam {
|
||||
@ApiModelProperty(value = "对应问题源ID,用于查询详细信息")
|
||||
private String id;
|
||||
/**
|
||||
* 整改意见
|
||||
*/
|
||||
@ApiModelProperty(value = "整改意见")
|
||||
private String reformAdvice;
|
||||
}
|
||||
@@ -101,6 +101,11 @@ public class WarningLeafletVO extends BaseEntity implements Serializable{
|
||||
*/
|
||||
private String issueDetail;
|
||||
|
||||
/**
|
||||
* 整改意见
|
||||
*/
|
||||
private String reformAdvice;
|
||||
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user