mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-19 18:45:03 +08:00
add 新增站点桩列表页导出流量卡接口
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.jsowell.pile.vo.web;
|
||||
|
||||
import com.jsowell.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 站点设备流量卡导出对象
|
||||
*/
|
||||
@Data
|
||||
public class PileDeviceSimCardExportVO {
|
||||
|
||||
@Excel(name = "桩号")
|
||||
private String pileSn;
|
||||
|
||||
@Excel(name = "ICCID")
|
||||
private String iccId;
|
||||
|
||||
@Excel(name = "型号名称")
|
||||
private String modelName;
|
||||
|
||||
@Excel(name = "运营商")
|
||||
private String merchantName;
|
||||
|
||||
@Excel(name = "充电站")
|
||||
private String stationName;
|
||||
|
||||
@Excel(name = "SIM卡商", dictType = "sim_supplier")
|
||||
private String simSupplier;
|
||||
|
||||
@Excel(name = "注册时间")
|
||||
private String registrationTime;
|
||||
}
|
||||
Reference in New Issue
Block a user