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.ruoyi.order.api.entity;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @author HJL
| * @version 1.0
| * @since 2024-07-08 18:45
| */
| @Data
| public class MoneyQueryRequest {
|
| private List<String> cityList;
|
| private String type;
| private List<String> siteIds;
|
| public MoneyQueryRequest(List<String> cityList, String type) {
| this.cityList = cityList;
| this.type = type;
| }
| }
|
|