doum
4 小时以前 417e33605dda0f28366a1d6e13c41198a156e3a7
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
 
 
    @ApiModelProperty(value = "商户积分页面背景图")
    private String shopIntegralBg;//SHOP_INTEGRAL_BG
 
    @ApiModelProperty(value = "用户邀请页面背景图")
    private String userInviteBg;//USER_INVITE_BG
 
    @ApiModelProperty(value = "个人中心邀请背景图")
    private String centerInviteBg;//CENTER_INVITE_BG
 
    @ApiModelProperty(value = "用户分享邀请背景图")
    private String userShareBg;//USER_SHARE_BG
 
 
 
 
 
}