add 新增站点桩列表页导出流量卡接口

This commit is contained in:
Lemon
2026-03-24 16:50:25 +08:00
parent b168c8541d
commit 9c0a3a0567
2 changed files with 58 additions and 0 deletions

View File

@@ -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;
}