hjl
2024-07-26 f8cc44e926fd22f9d1d864dc684c827f6960270b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
    public MoneyQueryRequest(List<String> cityList, String type) {
        this.cityList = cityList;
        this.type = type;
    }
}