mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
26 lines
408 B
Java
26 lines
408 B
Java
package com.jsowell.thirdparty.common;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class NotificationDTO {
|
|
/**
|
|
* 站点id
|
|
*/
|
|
private String stationId;
|
|
|
|
/**
|
|
* 平台类型,非必传
|
|
* 不传表示所有平台
|
|
*/
|
|
private String platformType;
|
|
|
|
private String pileConnectorCode;
|
|
|
|
private String status;
|
|
|
|
private String orderCode;
|
|
}
|