mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
commit
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user