doum
14 小时以前 26de0b1c1e70d01f7026776f877842f44bdf6a21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.doumee.dao.web.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/7/10 15:09
 */
@Data
public class UserCenterVO {
 
    @ApiModelProperty(value = "服务介绍")
    private String serverIntroduce;
 
    @ApiModelProperty(value = "积分规则")
    private String integralRule;
    @ApiModelProperty(value = "邀请规则说明")
    private String invitelRule;
 
    @ApiModelProperty(value = "关于我们")
    private String aboutUs;
 
    @ApiModelProperty(value = "用户协议")
    private String userAgreement;
 
    @ApiModelProperty(value = "隐私协议")
    private String privacyAgreement;
 
    @ApiModelProperty(value = "客服电话 多个以,分割")
    private String serverPhone;
}