代码提交
This commit is contained in:
@@ -41,6 +41,8 @@ public class CsFeedbackAddParm {
|
||||
// @NotBlank(message="用户id不能为空!")
|
||||
private String userId;
|
||||
|
||||
private String engineeringId;
|
||||
|
||||
/**
|
||||
* 问题类型(字典数据)
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.njcn.cssystem.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
*
|
||||
* Description:
|
||||
* 接口文档访问地址:http://serverIP:port/swagger-ui.html
|
||||
* Date: 2023/4/6 11:39【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
|
||||
|
||||
@Data
|
||||
public class CsFeedbackAuditParm {
|
||||
|
||||
|
||||
@ApiModelProperty(value = "反馈id")
|
||||
@NotNull(message = "反馈id不能为空!")
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty(value = "问题状态")
|
||||
@NotNull(message = "问题状态不能为空!")
|
||||
private String status;
|
||||
}
|
||||
@@ -34,7 +34,7 @@ public class CsFeedbackQueryParm {
|
||||
// @ApiModelProperty(value = "用户id")
|
||||
// @NotNull(message="用户id不能为空!")
|
||||
// private String userId;
|
||||
|
||||
// private String engineeringId;
|
||||
/**
|
||||
* 问题类型(字典数据)
|
||||
*/
|
||||
|
||||
@@ -52,6 +52,9 @@ public class CsFeedbackPO extends BaseEntity {
|
||||
@TableField(value = "type")
|
||||
private String type;
|
||||
|
||||
@TableField(value = "engineering_id")
|
||||
private String engineeringId;
|
||||
|
||||
/**
|
||||
* 问题状态(字典数据)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user