Update AttachFile.java

cyj
pbvfus8to 2 months ago
parent 5a68bd72ed
commit 165d71c01d

@ -0,0 +1,65 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
package com.yami.shop.bean.model;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* @author lanhai
*/
@Data
@TableName("tz_attach_file")
public class AttachFile implements Serializable {
@TableId
private Long fileId;
/**
*
*/
private String filePath;
/**
*
*/
private String fileType;
/**
*
*/
private Integer fileSize;
/**
*
*/
private Date uploadTime;
/**
* id
*/
private Long fileJoinId;
/**
* 1 @see FileJoinType
*/
private Integer fileJoinType;
}
Loading…
Cancel
Save