init
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -93,7 +93,7 @@ public class CurrentUserFullInfoVo {
|
||||
* 职业
|
||||
*/
|
||||
@Schema(description = "职业")
|
||||
private Integer profession;
|
||||
private String profession;
|
||||
/**
|
||||
* 年收入
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user