All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.admin.entity.AccountEntity Maven / Gradle / Ivy

There is a newer version: 2.7.2
Show newest version
package cn.ipokerface.admin.entity;

import cn.ipokerface.admin.enums.AccountStatus;
import cn.ipokerface.common.model.BaseIdModel;
import org.omg.CORBA.PRIVATE_MEMBER;

/**
 * Created by       PokerFace
 * Create Date      2021/5/2.
 * Email:
 * Version          1.0.0
 * 

* Description: */ public class AccountEntity extends BaseIdModel { private String username; private String mobile; private String name; private AccountStatus status; private String remark; private Long createdTimestamp; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getName() { return name; } public void setName(String name) { this.name = name; } public AccountStatus getStatus() { return status; } public void setStatus(AccountStatus status) { this.status = status; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public Long getCreatedTimestamp() { return createdTimestamp; } public void setCreatedTimestamp(Long createdTimestamp) { this.createdTimestamp = createdTimestamp; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy