提交 037d8137 authored 作者: yangdongming's avatar yangdongming

--no commit message

上级 4ad815db
/**
* @author niguanghui
* @date 2018年12月20日 上午9:41:49
*/
package com.zrqx.core.model.resource.themeLexicon;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import lombok.Data;
/**
* 主题词库
*
* @author niguanghui
* @date 2018年12月20日上午9:41:49
*/
@Data
@ApiModel(value = "ThemeLexicon", description = "主题词库")
@Table(name = "res_theme_lexicon")
public class ThemeLexicon {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY, generator = "SELECT REPLACE (UUID(), '-', '')")
@ApiModelProperty("丛书id,添加时不用填写")
private String id;
@ApiModelProperty("中文词根")
private String chineseRoot;
@ApiModelProperty("英文词根")
private String englishRoot;
@ApiModelProperty("英文缩写")
private String abbreviation;
@ApiModelProperty("中文同义词")
private String chineseSynonym;
@ApiModelProperty("英文同义词")
private String englishSynonym;
@ApiModelProperty("中文释义")
private String interpretation;
@ApiModelProperty("中文别字")
private String faultWord;
@ApiModelProperty("词条属性")
private String belong;
@ApiModelProperty("中文说明")
private String chineseExplain;
@ApiModelProperty("英文说明")
private String englishExplain;
@ApiModelProperty("上位词")
private String hypernym;
@ApiModelProperty("下位词")
private String hyponym;
@ApiModelProperty("分类编码")
private String codes;
@ApiModelProperty("上传时间")
private Date uploadTime;
@ApiModelProperty("状态:0未审核,1已通过,2未通过")
private Integer status;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论