| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.zhixinghe1.ots.atomic.entity;
- import java.io.Serial;
- import java.io.Serializable;
- import io.mybatis.provider.Entity;
- import lombok.Data;
- /**
- * 上传附件
- */
- @Data
- @Entity.Table
- public class Attachment implements Serializable {
- @Serial
- private static final long serialVersionUID = 4041962380906355389L;
- /**
- * 主键
- */
- @Entity.Column(id = true)
- private Long id;
- /**
- * 文件名
- */
- private String name;
- /**
- * 文件路径
- */
- private String path;
- /**
- * 使用状态
- */
- private Boolean status;
- }
|