新增 第三方平台统一停止充电接口

This commit is contained in:
Lemon
2024-03-26 15:35:08 +08:00
parent 9b5d4ea4bb
commit c6c7dd5b29
4 changed files with 72 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
package com.jsowell.pile.dto;
import com.jsowell.pile.domain.OrderBasicInfo;
import lombok.Data;
/**
* TODO
*
* @author Lemon
* @Date 2024/3/26 8:30:01
*/
@Data
public class ThirdPartyCommonStopChargeDTO {
private String thirdPartyType;
private OrderBasicInfo orderBasicInfo;
}