SysOssConfig.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.ruoyi.system.domain;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. /**
  9. * 对象存储配置对象 sys_oss_config
  10. *
  11. * @author Lion Li
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper = true)
  15. @Accessors(chain = true)
  16. @TableName("sys_oss_config")
  17. public class SysOssConfig extends BaseEntity {
  18. /**
  19. * 主建
  20. */
  21. @TableId(value = "oss_config_id")
  22. private Integer ossConfigId;
  23. /**
  24. * 配置key
  25. */
  26. private String configKey;
  27. /**
  28. * accessKey
  29. */
  30. private String accessKey;
  31. /**
  32. * 秘钥
  33. */
  34. private String secretKey;
  35. /**
  36. * 桶名称
  37. */
  38. private String bucketName;
  39. /**
  40. * 前缀
  41. */
  42. private String prefix;
  43. /**
  44. * 访问站点
  45. */
  46. private String endpoint;
  47. /**
  48. * 是否https(0否 1是)
  49. */
  50. private String isHttps;
  51. /**
  52. * 域
  53. */
  54. private String region;
  55. /**
  56. * 状态(0正常 1停用)
  57. */
  58. private String status;
  59. /**
  60. * 扩展字段
  61. */
  62. private String ext1;
  63. /**
  64. * 备注
  65. */
  66. private String remark;
  67. }