| | |
| | | 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; |
| | |
| | | |
| | | private String eventid; |
| | | |
| | | private Integer dirid; |
| | | private String parentid; |
| | | |
| | | private Integer depid; |
| | | private String dirid; |
| | | |
| | | private String depid; |
| | | |
| | | private Integer verid; |
| | | |
| | |
| | | |
| | | private Timestamp updatetime; |
| | | |
| | | @TableField(value = "fn_rec_query(dirid,'dir')") |
| | | @TableField(value = "fn_get_fullname(dirid, 2)", insertStrategy = FieldStrategy.NEVER) |
| | | private String dirName; |
| | | |
| | | @TableField(value = "fn_rec_query(depid,'dep')") |
| | | @TableField(value = "fn_get_fullname(depid, 1)", insertStrategy = FieldStrategy.NEVER) |
| | | private String depName; |
| | | |
| | | @TableField(value = "fn_ver(verid)") |
| | | @TableField(value = "fn_ver(verid)", insertStrategy = FieldStrategy.NEVER) |
| | | private String verName; |
| | | |
| | | @TableField(value = "fn_uname(createuser)") |
| | | @TableField(value = "fn_uname(createuser)", insertStrategy = FieldStrategy.NEVER) |
| | | private String createName; |
| | | |
| | | @TableField(value = "fn_uname(updateuser)") |
| | | /** |
| | | * 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; |
| | | } |
| | | |