package cn.stylefeng.guns.base.i18n.dict;
|
|
import cn.stylefeng.guns.base.i18n.enums.TranslationEnum;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 多语言表
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2019-10-17
|
*/
|
@Data
|
public class TranslationDict implements Serializable {
|
|
/**
|
* 编码
|
*/
|
private String tranCode;
|
|
public String getTranCode() {
|
return tranCode;
|
}
|
|
public void setTranCode(String tranCode) {
|
this.tranCode = tranCode;
|
}
|
|
public String getTranName() {
|
return tranName;
|
}
|
|
public void setTranName(String tranName) {
|
this.tranName = tranName;
|
}
|
|
public TranslationEnum getTranslationLanguages() {
|
return translationLanguages;
|
}
|
|
public void setTranslationLanguages(TranslationEnum translationLanguages) {
|
this.translationLanguages = translationLanguages;
|
}
|
|
public String getTranValue() {
|
return tranValue;
|
}
|
|
public void setTranValue(String tranValue) {
|
this.tranValue = tranValue;
|
}
|
|
/**
|
* 多语言条例名称
|
*/
|
private String tranName;
|
|
/**
|
* 1:中文 2:英语
|
*/
|
private TranslationEnum translationLanguages;
|
|
/**
|
* 翻译的值
|
*/
|
private String tranValue;
|
|
}
|