package com.mossle.user.persistence.domain; // Generated by Hibernate Tools import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; /** * AccountLockLog . * * @author Lingo */ @Entity @Table(name = "ACCOUNT_LOCK_LOG") public class AccountLockLog implements java.io.Serializable { private static final long serialVersionUID = 0L; /** null. */ private Long id; /** null. */ private String type; /** null. */ private String username; /** null. */ private Date lockTime; /** 租户. */ private String tenantId; public AccountLockLog() { } public AccountLockLog(Long id) { this.id = id; } public AccountLockLog(Long id, String type, String username, Date lockTime, String tenantId) { this.id = id; this.type = type; this.username = username; this.lockTime = lockTime; this.tenantId = tenantId; } /** @return null. */ @Id @Column(name = "ID", unique = true, nullable = false) public Long getId() { return this.id; } /** * @param id * null. */ public void setId(Long id) { this.id = id; } /** @return null. */ @Column(name = "TYPE", length = 200) public String getType() { return this.type; } /** * @param type * null. */ public void setType(String type) { this.type = type; } /** @return null. */ @Column(name = "USERNAME", length = 64) public String getUsername() { return this.username; } /** * @param username * null. */ public void setUsername(String username) { this.username = username; } /** @return null. */ @Temporal(TemporalType.TIMESTAMP) @Column(name = "LOCK_TIME", length = 26) public Date getLockTime() { return this.lockTime; } /** * @param lockTime * null. */ public void setLockTime(Date lockTime) { this.lockTime = lockTime; } /** @return 租户. */ @Column(name = "TENANT_ID", length = 64) public String getTenantId() { return this.tenantId; } /** * @param tenantId * 租户. */ public void setTenantId(String tenantId) { this.tenantId = tenantId; } }