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", type = IdType.AUTO)
|
private Long accessoryid;
|
|
/**
|
* 处罚数量
|
*/
|
@TableField("cf")
|
private Integer cf;
|
|
/**
|
* 记录创建时间
|
*/
|
@TableField("createTime")
|
private Date createtime;
|
|
/**
|
* 记录创建人
|
*/
|
@TableField("creator")
|
private String creator;
|
|
/**
|
* 辞职申请数量
|
*/
|
@TableField("czsq")
|
private Integer czsq;
|
|
/**
|
* 记录删除标志。0-未删除 1-已删除,默认0
|
*/
|
@TableField("delFlag")
|
private Integer delFlag = 0;
|
/**
|
* 员工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;
|
|
|
}
|