mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
21 lines
330 B
Java
21 lines
330 B
Java
|
|
package com.jsowell.pile.dto;
|
||
|
|
|
||
|
|
import lombok.Getter;
|
||
|
|
import lombok.Setter;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Getter
|
||
|
|
@Setter
|
||
|
|
public class ThirdPartyStationRelationDTO {
|
||
|
|
/**
|
||
|
|
* 站点id
|
||
|
|
*/
|
||
|
|
private String stationId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 要推送的第三方平台类型数组
|
||
|
|
*/
|
||
|
|
private List<String> thirdPartyTypes;
|
||
|
|
}
|