1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.fd.entity;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.Data;
- import javax.persistence.Column;
- import javax.persistence.Entity;
- import javax.persistence.Table;
- import java.io.Serializable;
- /**
- * Created by Owen on 2019/10/28 0028 11:15
- */
- @Data
- @Entity
- @Table(name = "t_file")
- public class FileEntity extends BaseEntity implements Serializable {
- private static final long serialVersionUID = 3663614649370191338L;
- @Column
- private String fileName; // 文件名称
- @Column
- private String fileUrl; // 文件路径
- // @JsonIgnore
- // @Column
- // private String description; // 描述
- //
- // @JsonIgnore
- // @Column
- // private String version; // 版本
- @Column
- private String type; // 文件类型
- @Column
- private Integer status; // 状态,是否可用 1:完成, 0:未完成
- }
|