SysOssConfigVo.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package com.ruoyi.system.domain.vo;
  2. import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. /**
  7. * 对象存储配置视图对象 sys_oss_config
  8. *
  9. * @author Lion Li
  10. * @author 孤舟烟雨
  11. * @date 2021-08-13
  12. */
  13. @Data
  14. @ApiModel("对象存储配置视图对象")
  15. @ExcelIgnoreUnannotated
  16. public class SysOssConfigVo {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 主建
  20. */
  21. @ApiModelProperty("主建")
  22. private Long ossConfigId;
  23. /**
  24. * 配置key
  25. */
  26. @ApiModelProperty("配置key")
  27. private String configKey;
  28. /**
  29. * accessKey
  30. */
  31. @ApiModelProperty("accessKey")
  32. private String accessKey;
  33. /**
  34. * 秘钥
  35. */
  36. @ApiModelProperty("secretKey")
  37. private String secretKey;
  38. /**
  39. * 桶名称
  40. */
  41. @ApiModelProperty("桶名称")
  42. private String bucketName;
  43. /**
  44. * 前缀
  45. */
  46. @ApiModelProperty("前缀")
  47. private String prefix;
  48. /**
  49. * 访问站点
  50. */
  51. @ApiModelProperty("访问站点")
  52. private String endpoint;
  53. /**
  54. * 是否https(Y=是,N=否)
  55. */
  56. @ApiModelProperty("是否https(Y=是,N=否)")
  57. private String isHttps;
  58. /**
  59. * 域
  60. */
  61. @ApiModelProperty("域")
  62. private String region;
  63. /**
  64. * 状态(0=正常,1=停用)
  65. */
  66. @ApiModelProperty("状态(0=正常,1=停用)")
  67. private String status;
  68. /**
  69. * 扩展字段
  70. */
  71. @ApiModelProperty("扩展字段")
  72. private String ext1;
  73. /**
  74. * 备注
  75. */
  76. @ApiModelProperty("备注")
  77. private String remark;
  78. }