| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * Copyright (c) 2022 雷掣 All rights reserved.
- *
- * https://www.lc_crm.com
- *
- * 版权所有,侵权必究!
- */
-
- package io.renren.entity;
-
- import com.baomidou.mybatisplus.annotation.TableName;
- import io.renren.common.entity.BaseEntity;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
-
- /**
- * 文件上传
- *
- * @author Mark sunlightcs@gmail.com
- */
- @Data
- @EqualsAndHashCode(callSuper=false)
- @TableName("sys_oss")
- public class SysOssEntity extends BaseEntity {
- private static final long serialVersionUID = 1L;
-
- /**
- * URL地址
- */
- private String url;
-
- /**
- * 用户ID
- */
- private Long userId;
-
- /**
- * 类型01正面02背面
- */
- private String type;
-
- }
|