Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/domain/PileSimInfo.java

84 lines
1.9 KiB
Java
Raw Normal View History

2023-03-04 16:29:55 +08:00
package com.jsowell.pile.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.jsowell.common.annotation.Excel;
import com.jsowell.common.core.domain.BaseEntity;
import lombok.*;
import java.util.Date;
/**
* 充电桩SIM卡信息对象 pile_sim_info
2024-10-31 16:36:02 +08:00
*
2023-03-04 16:29:55 +08:00
* @author jsowell
* @date 2022-08-26
*/
@EqualsAndHashCode(callSuper = true)
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
2024-10-31 16:36:02 +08:00
public class PileSimInfo extends BaseEntity {
2023-03-04 16:29:55 +08:00
private static final long serialVersionUID = 1L;
2024-10-31 16:36:02 +08:00
/**
* 主键
*/
2023-03-04 16:29:55 +08:00
private Long id;
2024-10-31 16:36:02 +08:00
/**
* 套餐名称
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "套餐名称")
private String name;
2024-10-31 16:36:02 +08:00
/**
* ICCID
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "ICCID")
private String iccid;
2024-10-31 16:36:02 +08:00
/**
* 状态0-正常,1-强制断网,2-客户断网,3-超套停,4-服务结束,5-提请销卡,6-销卡
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "状态", readConverterExp = "0=-正常,1-强制断网,2-客户断网,3-超套停,4-服务结束,5-提请销卡,6-销卡")
private String status;
2024-10-31 16:36:02 +08:00
/**
* sim卡供应商
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "sim卡供应商")
private String simSupplier;
2024-10-31 16:36:02 +08:00
/**
* 套餐总流量
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "套餐总流量")
private String totalData;
2024-10-31 16:36:02 +08:00
/**
* 剩余流量
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "剩余流量")
private String surplusData;
2024-10-31 16:36:02 +08:00
/**
* 到期时间
*/
2023-03-04 16:29:55 +08:00
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "到期时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date expireTime;
2024-10-31 16:36:02 +08:00
/**
* SIM卡运营商(china_telecom - 中国电信 china_mobile - 中国移动 china_unicom - 中国联通)
*/
2023-03-04 16:29:55 +08:00
@Excel(name = "SIM卡运营商(china_telecom - 中国电信, china_mobile - 中国移动, china_unicom - 中国联通)")
private String operator;
2024-10-31 16:36:02 +08:00
/**
* 删除标识0-正常1-删除
*/
2023-03-04 16:29:55 +08:00
private String delFlag;
}