2022-07-01 13:49:44 +08:00

113 lines
1.8 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.blueland.model;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.io.Serializable;
import java.util.Date;
/**
* 附件对象 t_pf_attachment
*
* @author xcy
* @date 2022-05-10
*/
@Data
@NoArgsConstructor
@Accessors(chain = true)
@TableName("t_pf_attachment")
public class TPfAttachment implements Serializable {
private static final long serialVersionUID=1L;
/**
* id
*/
@TableId(value = "att_id")
private String attId;
/**
* 应用ID
*/
private String appId;
/**
* 附件名称
*/
private String attName;
/**
* 附件路径
*/
private String attUrl;
/**
* 附件类型
*/
private String attType;
/**
* 业务id
*/
private String bizId;
/**
* 业务name
*/
private String bizName;
/**
* 是否可见y:可见n不可见
*/
private String attShow;
/**
* 创建时间
*/
@TableField(fill = FieldFill.INSERT)
private Date createTime;
/**
*
*/
private String createUserId;
/**
*
*/
private String createUserName;
/**
* 更新时间
*/
@TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateTime;
/**
* 更新用户id
*/
private String updateUserId;
/**
* 更新用户名称
*/
private String updateUserName;
/**
* 备注
*/
private String attRemark;
/**
* 文档云id
*/
private String sdkAppId;
}