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 cityList; private String type; private List siteIds; public MoneyQueryRequest(List cityList, String type) { this.cityList = cityList; this.type = type; } }