1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.dsh.course.feignClient.communityWorldCup.Model;
|
| import lombok.Data;
|
| /**
| * 报名订单列表VO
| */
| @Data
| public class WorldCupIncomeVO {
|
| private String id;
| private String userName;
| // 门店id
| private String phone;
| private String amount;
| private String payTime;
| private String province;
| private String city;
| private String storeName;
| private String storeId;
| }
|
|