linwe
2024-07-08 7a1e4d9fe3fe2172d5c4fba524f17ffd73ffbb3e
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;
 
}