lin
2024-03-27 5c3572eea745795b24c9be2fd31de9e2511d8e1e
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;
 
}