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

31 lines
437 B
Java
Raw Normal View History

package com.jsowell.pile.dto;
import lombok.Data;
/**
* 鉴权卡dto
*
* @author JS-ZZA
* @date 2023/3/24 9:29
*/
@Data
public class PileAuthCardDTO {
2023-03-24 13:15:52 +08:00
private Long id;
private String logicCard;
2023-03-24 13:15:52 +08:00
private String physicsCard;
private String status;
2023-05-24 09:58:01 +08:00
private String secretKey;
2023-03-24 13:15:52 +08:00
private String memberId;
private String phoneNumber;
2023-05-24 09:58:01 +08:00
private String verificationCode;
2023-08-03 17:14:10 +08:00
private String merchantId;
}