新增 宁夏交投 相关service方法

This commit is contained in:
Lemon
2023-11-13 16:13:02 +08:00
parent f62bea40a2
commit 6432901b83
12 changed files with 384 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package com.jsowell.pile.dto.ningxiajiaotou;
import lombok.Data;
/**
* 宁夏交投查询订单信息DTO
*
* @author Lemon
* @Date 2023/11/13 15:51:17
*/
@Data
public class NXJTQueryOrdersInfoDTO {
private Integer pageNo;
private Integer pageSize;
private String licensePlateNumber;
private String operatorId;
}

View File

@@ -0,0 +1,22 @@
package com.jsowell.pile.dto.ningxiajiaotou;
import lombok.Data;
/**
* 查询充电站信息DTO
*
* @author Lemon
* @Date 2023/11/13 13:52:41
*/
@Data
public class NXJTQueryStationInfoDTO {
private String operatorId;
private Integer pageNo;
private Integer pageSize;
private String stationId;
}