xiaoyong931011
2023-09-04 5d16c166304f7386909cfb5909a7ead4fb3e09b9
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
package cc.mrbird.febs.dapp.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ApiModel(value = "TeamChildListVo", description = "团队列表返回参数类")
public class TeamChildListVo {
 
    @ApiModelProperty(value = "UID")
    private String inviteId;
 
    @ApiModelProperty(value = "地址")
    private String address;
 
    @ApiModelProperty(value = "代理等级")
    private String accountType;
 
    @ApiModelProperty(value = "注册时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    @ApiModelProperty(value = "推荐个数")
    private Integer cnt;
 
    @ApiModelProperty(value = "本人是否下单 1:下过单 2:没下单")
    private Integer achieveState;
 
    @ApiModelProperty(value = "消费金额(实际业绩)")
    private BigDecimal realAchieve;
 
    @ApiModelProperty(value = "订单数量")
    private Integer orderCnt;
 
}