mirror of https://github.com/jeecgboot/jeecg-boot
parent
db8bd1e464
commit
1832b9a636
@ -1,28 +0,0 @@
|
|||||||
package org.jeecg.modules.oss.entity;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
import org.jeecg.common.system.base.entity.JeecgEntity;
|
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description: oss云存储实体类
|
|
||||||
* @author: jeecg-boot
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@TableName("oss_file")
|
|
||||||
@EqualsAndHashCode(callSuper = false)
|
|
||||||
@Accessors(chain = true)
|
|
||||||
public class OssFile extends JeecgEntity {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
@Excel(name = "文件名称")
|
|
||||||
private String fileName;
|
|
||||||
|
|
||||||
@Excel(name = "文件地址")
|
|
||||||
private String url;
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in new issue