| | |
| | | package com.lf.server.entity.all; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | |
| | | private String eventid; |
| | | |
| | | private Integer dirid; |
| | | private String parentid; |
| | | |
| | | private Integer depid; |
| | | private String dirid; |
| | | |
| | | private String depid; |
| | | |
| | | private Integer verid; |
| | | |
| | |
| | | private Integer updateuser; |
| | | |
| | | private Timestamp updatetime; |
| | | |
| | | @TableField(value = "fn_get_fullname(dirid, 2)", insertStrategy = FieldStrategy.NEVER) |
| | | private String dirName; |
| | | |
| | | @TableField(value = "fn_get_fullname(depid, 1)", insertStrategy = FieldStrategy.NEVER) |
| | | private String depName; |
| | | |
| | | @TableField(value = "fn_ver(verid)", insertStrategy = FieldStrategy.NEVER) |
| | | private String verName; |
| | | |
| | | @TableField(value = "fn_uname(createuser)", insertStrategy = FieldStrategy.NEVER) |
| | | private String createName; |
| | | |
| | | /** |
| | | * updateStrategy = FieldStrategy.NEVER |
| | | */ |
| | | @TableField(value = "fn_uname(updateuser)", insertStrategy = FieldStrategy.NEVER) |
| | | private String updateName; |
| | | |
| | | public BaseEntity() { |
| | | } |
| | |
| | | this.eventid = eventid; |
| | | } |
| | | |
| | | public Integer getDirid() { |
| | | public String getParentid() { |
| | | return parentid; |
| | | } |
| | | |
| | | public void setParentid(String parentid) { |
| | | this.parentid = parentid; |
| | | } |
| | | |
| | | public String getDirid() { |
| | | return dirid; |
| | | } |
| | | |
| | | public void setDirid(Integer dirid) { |
| | | public void setDirid(String dirid) { |
| | | this.dirid = dirid; |
| | | } |
| | | |
| | | public Integer getDepid() { |
| | | public String getDepid() { |
| | | return depid; |
| | | } |
| | | |
| | | public void setDepid(Integer depid) { |
| | | public void setDepid(String depid) { |
| | | this.depid = depid; |
| | | } |
| | | |
| | |
| | | public void setUpdatetime(Timestamp updatetime) { |
| | | this.updatetime = updatetime; |
| | | } |
| | | |
| | | public String getDirName() { |
| | | return dirName; |
| | | } |
| | | |
| | | public void setDirName(String dirName) { |
| | | this.dirName = dirName; |
| | | } |
| | | |
| | | public String getDepName() { |
| | | return depName; |
| | | } |
| | | |
| | | public void setDepName(String depName) { |
| | | this.depName = depName; |
| | | } |
| | | |
| | | public String getVerName() { |
| | | return verName; |
| | | } |
| | | |
| | | public void setVerName(String verName) { |
| | | this.verName = verName; |
| | | } |
| | | |
| | | public String getCreateName() { |
| | | return createName; |
| | | } |
| | | |
| | | public void setCreateName(String createName) { |
| | | this.createName = createName; |
| | | } |
| | | |
| | | public String getUpdateName() { |
| | | return updateName; |
| | | } |
| | | |
| | | public void setUpdateName(String updateName) { |
| | | this.updateName = updateName; |
| | | } |
| | | } |