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