You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
691 B

package com.eco.plugin.xx.kdxfsso.db.bean;
import com.fr.stable.db.entity.BaseEntity;
import com.fr.stable.db.entity.TableAssociation;
import com.fr.third.javax.persistence.Column;
import com.fr.third.javax.persistence.Entity;
import com.fr.third.javax.persistence.Table;
/**
* @author xx
* @version 10.0
* Created by xx on 2021-07-29
**/
@Entity
@Table(name = "plugin_xx_entity_tokenrecord")
@TableAssociation(associated = true)
public class DBEntity extends BaseEntity {
//token
@Column(name = "token")
private String token = null;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
}