DictEntity.java 1.31 KB
Newer Older
Fred's avatar
Fred committed
1 2 3 4 5 6
package com.govmade.modules.system.entity;

import com.baomidou.mybatisplus.annotations.TableName;
import com.govmade.modules.basic.entity.BaseEntity;

/**
Fred's avatar
Fred committed
7
 * 系统管理 - 字典設置
Fred's avatar
Fred committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
 * 
 * @author Fred
 * @email fangtaosh@qq.com
 * @date 2018年8月7日
 */
@TableName("system_dicts")
public class DictEntity extends BaseEntity<Long> {

	private static final long serialVersionUID = 1L;

	private Long pid; // 父级ID

	private String name; // 字典名

	private String value; // 字典值

	private Integer type; // 类型

	private Integer weight; // 权重

	private String remark; // 备注

	public Long getPid() {
		return pid;
	}

	public void setPid(Long pid) {
		this.pid = pid;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	public Integer getType() {
		return type;
	}

	public void setType(Integer type) {
		this.type = type;
	}

	public Integer getWeight() {
		return weight;
	}

	public void setWeight(Integer weight) {
		this.weight = weight;
	}

	public String getRemark() {
		return remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}
}