Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/BatchCreatePileDTO.java

61 lines
799 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 lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class BatchCreatePileDTO {
/**
* 运营商id
*/
private String merchantId;
/**
* 充电站id
*/
private String stationId;
/**
* 型号id
*/
private String modelId;
/**
* 软件协议1-云快充2-永联)
*/
private String softwareProtocol;
/**
* 生成日期
*/
private Date productionDate;
/**
* 接口数量
*/
private int connectorNum;
/**
* 生成台数
*/
private int num;
/**
* 备注
*/
private String remark;
/**
* 经营类型
* 1-运营桩2-个人桩
*/
private String chargerPileType;
}