Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/BasicPileDTO.java
2023-03-04 16:29:55 +08:00

43 lines
569 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.pile.dto;
import com.jsowell.common.core.domain.BaseEntity;
import lombok.Data;
/**
* 充电桩基础DTO
*/
@Data
public class BasicPileDTO extends BaseEntity {
/**
* 站点id
*/
private String stationId;
/**
* 充电桩id
*/
private String pileId;
/**
* 设备sn
*/
private String pileSn;
/**
* 枪口号
*/
private String connectorCode;
/**
* 枪口编号
* 桩编码+枪口号
*/
private String pileConnectorCode;
/**
* 充电桩状态
* 1-在线2-离线3-故障
*/
private String status;
}