package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
@TableName("element_management")
|
public class ElementManagement implements Serializable {
|
|
private final static long serialVersionUID = 1L;
|
|
/** 要素名称 name **/
|
private String name;
|
|
/** 要素级别 type 0:A级要素 1:B级要素**/
|
private Integer type;
|
|
/** 父要素id parent_id **/
|
private Long parentId;
|
|
/** 要素备注 remark **/
|
private String remark;
|
|
/** B级要素得分 point **/
|
private Integer point;
|
|
/** A级要素权重 weight **/
|
private Float weight;
|
|
@TableField(exist = false)
|
/** 父级要素名称 parentName **/
|
private String parentName;
|
|
/** 主键id id **/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 有效标识 valid_flag **/
|
private Boolean validFlag;
|
|
/** 创建时间 create_time **/
|
private Date createTime;
|
|
/** 创建人 create_by **/
|
private String createBy;
|
|
/** 最新更新时间 update_time **/
|
private Date updateTime;
|
|
/** 最后更新人 update_by **/
|
private String updateBy;
|
|
|
/** 主键id id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** 主键id id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 有效标识 valid_flag **/
|
public Boolean getValidFlag() {
|
return validFlag;
|
}
|
|
/** 有效标识 valid_flag **/
|
public void setValidFlag(Boolean validFlag) {
|
this.validFlag = validFlag;
|
}
|
|
/** 创建时间 create_time **/
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/** 创建时间 create_time **/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
/** 创建人 create_by **/
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
/** 创建人 create_by **/
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy == null ? null : createBy.trim();
|
}
|
|
/** 最新更新时间 update_time **/
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
/** 最新更新时间 update_time **/
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
/** 最后更新人 update_by **/
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
/** 最后更新人 update_by **/
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy == null ? null : updateBy.trim();
|
}
|
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Long getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(Long parentId) {
|
this.parentId = parentId;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getParentName() {
|
return parentName;
|
}
|
|
public void setParentName(String parentName) {
|
this.parentName = parentName;
|
}
|
|
public Integer getPoint() {
|
return point;
|
}
|
|
public void setPoint(Integer point) {
|
this.point = point;
|
}
|
|
public Float getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Float weight) {
|
this.weight = weight;
|
}
|
}
|