1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.doumee.biz.zbom.model.zhongtai;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
|
| /**
| * 用户收藏、浏览、点赞、分享+1
| */
| @Data
| public class ZTBaseRequst {
| /**
| * 父级编码
| */
|
| @ApiModelProperty(value = "C端传“CUSTOMER”, B端传'BUSINESS")
| private String userType;
| @ApiModelProperty(value = "token" , hidden = true)
| private String token;
| private String openId;
| @ApiModelProperty(value = "用户主键" , hidden = true)
| private String userId;
|
| }
|
|