com.github.rexsheng.springboot.faster.system.entity.LocaleSource Maven / Gradle / Ivy
The newest version!
package com.github.rexsheng.springboot.faster.system.entity;
import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.annotation.Table;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.io.Serial;
/**
* 国际化数据源表 实体类。
*
* @author sheng
* @since 2024-04-06
*/
@Table(value = "sys_locale_source")
public class LocaleSource implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
/**
* 主键ID
*/
@Id(keyType = KeyType.Auto)
private Integer id;
/**
* 数据值
*/
private String valueField;
/**
* 中文标签
*/
private String zhField;
/**
* 英文标签
*/
private String enField;
/**
* 表名
*/
private String tableName;
/**
* 查询条件
*/
private String tableCondition;
/**
* 无效数据的条件,避免关联表仍使用
*/
private String invalidCondition;
/**
* 字典类型
*/
private String localeCategory;
/**
* 状态(0正常,1停用)
*/
private Integer status;
/**
* 是否删除(0正常,1已删除)
*/
private Boolean isDel;
/**
* 创建时间
*/
private LocalDateTime createTime;
/**
* 创建人
*/
private Long createUser;
/**
* 修改时间
*/
private LocalDateTime updateTime;
/**
* 修改人
*/
private Long updateUser;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getValueField() {
return valueField;
}
public void setValueField(String valueField) {
this.valueField = valueField;
}
public String getZhField() {
return zhField;
}
public void setZhField(String zhField) {
this.zhField = zhField;
}
public String getEnField() {
return enField;
}
public void setEnField(String enField) {
this.enField = enField;
}
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getTableCondition() {
return tableCondition;
}
public void setTableCondition(String tableCondition) {
this.tableCondition = tableCondition;
}
public String getInvalidCondition() {
return invalidCondition;
}
public void setInvalidCondition(String invalidCondition) {
this.invalidCondition = invalidCondition;
}
public String getLocaleCategory() {
return localeCategory;
}
public void setLocaleCategory(String localeCategory) {
this.localeCategory = localeCategory;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Boolean getIsDel() {
return isDel;
}
public void setIsDel(Boolean isDel) {
this.isDel = isDel;
}
public LocalDateTime getCreateTime() {
return createTime;
}
public void setCreateTime(LocalDateTime createTime) {
this.createTime = createTime;
}
public Long getCreateUser() {
return createUser;
}
public void setCreateUser(Long createUser) {
this.createUser = createUser;
}
public LocalDateTime getUpdateTime() {
return updateTime;
}
public void setUpdateTime(LocalDateTime updateTime) {
this.updateTime = updateTime;
}
public Long getUpdateUser() {
return updateUser;
}
public void setUpdateUser(Long updateUser) {
this.updateUser = updateUser;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy