package cc.mrbird.febs.server.hr.entity;
|
|
import java.util.Date;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
/**
|
* 附件管理 Entity
|
*
|
* @author yz
|
* @date 2021-02-15 17:07:19
|
*/
|
@Data
|
@TableName("t_emp_accessory")
|
public class EmpAccessory {
|
|
/**
|
* 附件Id
|
*/
|
@TableId(value = "accessoryId")
|
private Long accessoryid;
|
|
/**
|
* 记录创建时间
|
*/
|
@TableField("createTime")
|
private Date createtime;
|
|
/**
|
* 记录创建人
|
*/
|
@TableField("creator")
|
private String creator;
|
|
/**
|
* 记录删除标志。0-未删除 1-已删除,默认0
|
*/
|
@TableField("delFlag")
|
private Integer delFlag = 0;
|
/**
|
* 记录最后更新人
|
*/
|
@TableField("modifier")
|
private String modifier;
|
/**
|
* 记录最后更新时间
|
*/
|
@TableField("modifyTime")
|
private Date modifytime;
|
|
/**
|
* 记录版本号,用来进行乐观锁控制
|
*/
|
@TableField("version")
|
private Integer version;
|
/**
|
* 员工Id
|
*/
|
@TableField("empId")
|
private Long empid;
|
/**
|
* 文件存储地址
|
*/
|
@TableField("filesAddress")
|
private String filesaddress;
|
|
/**
|
* 文件格式
|
*/
|
@TableField("filesFormat")
|
private String filesformat;
|
|
/**
|
* 文件名称
|
*/
|
@TableField("filesName")
|
private String filesname;
|
|
/**
|
* 文件夹ID
|
*/
|
@TableField("labelId")
|
private Long labelid;
|
|
@TableField(exist = false)
|
private String allDeptName;
|
|
}
|