xyz.erupt.upms.model.EruptDict Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erupt-upms Show documentation
Show all versions of erupt-upms Show documentation
User Permissions Management
The newest version!
package xyz.erupt.upms.model;
import lombok.Getter;
import lombok.Setter;
import xyz.erupt.annotation.Erupt;
import xyz.erupt.annotation.EruptField;
import xyz.erupt.annotation.EruptI18n;
import xyz.erupt.annotation.constant.AnnotationConst;
import xyz.erupt.annotation.sub_erupt.Drill;
import xyz.erupt.annotation.sub_erupt.Link;
import xyz.erupt.annotation.sub_erupt.Power;
import xyz.erupt.annotation.sub_field.Edit;
import xyz.erupt.annotation.sub_field.EditType;
import xyz.erupt.annotation.sub_field.View;
import xyz.erupt.annotation.sub_field.sub_edit.Search;
import xyz.erupt.jpa.model.MetaModelUpdateVo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
/**
* @author YuePeng
* date 2018-12-07.
*/
@Entity
@Table(name = "e_dict")
@EruptI18n
@Erupt(
name = "数据字典",
power = @Power(export = true),
orderBy = "EruptDict.updateTime desc",
drills = @Drill(
title = "字典项",
link = @Link(
linkErupt = EruptDictItem.class, joinColumn = "eruptDict.id"
)
)
)
@Getter
@Setter
public class EruptDict extends MetaModelUpdateVo {
@Column(length = AnnotationConst.CODE_LENGTH, unique = true)
@EruptField(
views = @View(title = "编码", sortable = true),
edit = @Edit(title = "编码", notNull = true, search = @Search(vague = true))
)
private String code;
@EruptField(
views = @View(title = "名称", sortable = true),
edit = @Edit(title = "名称", notNull = true, search = @Search(vague = true))
)
private String name;
@EruptField(
views = @View(title = "备注"),
edit = @Edit(title = "备注", type = EditType.TEXTAREA)
)
private String remark;
}