package com.dayu.recharge.dbBean; import androidx.room.Entity; import androidx.room.PrimaryKey; /** * Created by Android Studio. * author: zuo * Date: 2023-12-14 * Time: 10:05 * 备注: 卡相关信息 */ @Entity public class CardData { @PrimaryKey(autoGenerate = true) public long id; /** * 卡片类型 */ public String cardType; /** * 卡标识 */ public String cardIdentifying; public String getCardIdentifying() { return cardIdentifying; } public void setCardIdentifying(String cardIdentifying) { this.cardIdentifying = cardIdentifying; } public String getCardType() { return cardType; } public void setCardType(String cardType) { this.cardType = cardType; } }