This commit is contained in:
张良(004796)
2024-04-18 18:47:03 +08:00
parent 14cd347ee8
commit 43eaa1f1be
11 changed files with 308 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
package com.ruoyi.xq.dto.app.other;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class FeedbackReq {
@Schema(hidden = true)
private Long userId;
@Schema(description = "留言标题")
private String title;
/**
* 留言内容
*/
@Schema(description = "留言内容")
private String content;
/**
* 留言手机
*/
@Schema(description = "留言手机")
private String feedbackMobile;
}

View File

@@ -93,7 +93,7 @@ public class CurrentUserFullInfoVo {
* 职业
*/
@Schema(description = "职业")
private Integer profession;
private String profession;
/**
* 年收入
*/