Helius
2021-06-30 3445c240f623d79ccdf8ef68d020d49e04885cb8
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
package com.xzx.gc.model.admin;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class PartnerPayMsgModel implements Serializable {
 
     String id ;
    @ApiModelProperty(value="流水号",required=true)
     String flowNo ;
     @ApiModelProperty(value="费用名称",required=true)
     String payName ;
    @ApiModelProperty(value="结算时间",required=true)
     String payTime ;
    @ApiModelProperty(value="金额",required=true)
     String money ;
    @ApiModelProperty(value="状态(1为待支付,2为已支付,3为已审核,4为已提现,5:待审核 6审核不通过)",required=true)
    String payStatus ;
    @ApiModelProperty(value="姓名",required=true)
    String partnerName ;
    @ApiModelProperty(value="手机号码",required=true)
    String mobilePhone ;
    @ApiModelProperty(value="角色名称 合伙类型(1:合伙人。2:打包站",required=true)
    String partnerType ;
    @ApiModelProperty(value="(1:充值,2:环保金支出,3环保金收入,4提现5现金收入 6现金支出 10分享返利 11阶梯返利 12红包)",required=true)
    String payType;
    @ApiModelProperty(value="用户Id",required=true)
    String userId ;
    String startTime;
    String endTime;
    String delFlag;
    int page;
    int limit;
    String name;
    List<String> partnerIds;
 
    public PartnerPayMsgModel(){
    }
 
 
}