Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/domain/PileAuthCard.java
2023-12-01 13:29:35 +08:00

76 lines
1.1 KiB
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.domain;
import lombok.*;
import java.util.Date;
/**
* 充电站鉴权卡表
*/
@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class PileAuthCard {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private Integer id;
/**
* 逻辑卡号
*/
private String logicCard;
/**
* 物理卡号
*/
private String physicsCard;
/**
* 卡状态(0-待激活1-正常使用2-启动锁定9-停用)
*/
private String status;
/**
* 密钥
*/
private String secretKey;
/**
* 所属用户的会员id
*/
private String memberId;
/**
* 所属运营商id
*/
private String merchantId;
/**
* 创建时间
*/
private Date createTime;
/**
* 创建人
*/
private String createBy;
/**
* 更新时间
*/
private Date updateTime;
/**
* 更新人
*/
private String updateBy;
/**
* 删除标识0-正常1-删除)
*/
private String delFlag;
}