mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 12:05:05 +08:00
23 lines
363 B
Java
23 lines
363 B
Java
package com.jsowell.pile.dto;
|
|
|
|
import com.jsowell.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 首页数据展示DTO
|
|
*
|
|
* @author JS-ZZA
|
|
* @date 2023/2/3 16:11
|
|
*/
|
|
@Data
|
|
public class IndexQueryDTO extends BaseEntity {
|
|
/**
|
|
* 站点id
|
|
*/
|
|
private String stationId;
|
|
|
|
private List<String> stationIdList;
|
|
}
|