1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package org.springblade.modules.resource.vo;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
| import org.springblade.modules.resource.entity.AttachData;
|
| /**
| * 附件表视图实体类
| *
| * @author zhongrj
| */
| @Data
| @ApiModel(value = "AttachDataVO对象", description = "附件数据表")
| public class AttachDataVO extends AttachData {
| private static final long serialVersionUID = 1L;
|
| }
|
|