您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SysOssEntity.java 685B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. * Copyright (c) 2022 雷掣 All rights reserved.
  3. *
  4. * https://www.lc_crm.com
  5. *
  6. * 版权所有,侵权必究!
  7. */
  8. package io.renren.entity;
  9. import com.baomidou.mybatisplus.annotation.TableName;
  10. import io.renren.common.entity.BaseEntity;
  11. import lombok.Data;
  12. import lombok.EqualsAndHashCode;
  13. /**
  14. * 文件上传
  15. *
  16. * @author Mark sunlightcs@gmail.com
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper=false)
  20. @TableName("sys_oss")
  21. public class SysOssEntity extends BaseEntity {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * URL地址
  25. */
  26. private String url;
  27. /**
  28. * 用户ID
  29. */
  30. private Long userId;
  31. /**
  32. * 类型01正面02背面
  33. */
  34. private String type;
  35. }