1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.taoke.autopay.vo;
|
| import lombok.Builder;
| import lombok.Data;
|
| /**
| * @author hxh
| * @title: AgentWithdrawVO
| * @description: 代理提现
| * @date 2024/7/29 17:01
| */
| @Data
| @Builder
| public class AgentWithdrawVO {
| private Long id;
| private String month;
| private String settleTime;
| private long orderCount;
| private String money;
| private int status;
| private String statusDesc;
| }
|
|