个人桩启动充电

This commit is contained in:
Guoqs
2024-06-20 16:36:25 +08:00
parent c6aa654052
commit 58710aedf3
16 changed files with 213 additions and 83 deletions

View File

@@ -0,0 +1,24 @@
package com.jsowell.pile.dto;
import lombok.Data;
@Data
public class StartPersonPileDTO {
/**
* 充电桩枪口编号
*/
private String pileConnectorCode;
/**
* 启动类型
* @see com.jsowell.common.enums.ykc.StartTypeEnum
*/
private String startType;
private String memberId;
private String startTime;
private String endTime;
}