diff --git a/src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretDTO.java b/src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretDTO.java new file mode 100644 index 0000000..817ef07 --- /dev/null +++ b/src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretDTO.java @@ -0,0 +1,18 @@ +package com.yn.bftl.thirdparty.common.dto; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +@Data +public class BaseSecretDTO extends BaseSecretSpecifications { + + @ApiModelProperty(value = "密码密文", notes = "长度不超过1024个字符,必填。填写方式见附录。") + private String encryptPwd; + + @ApiModelProperty(value = "加密类型", notes = "长度不超过1个字符,必填。填写方式见附录。") + private String encryptType; + + @ApiModelProperty(value = "随机因子", notes = "长度不超过32个字符,必填。填写方式见附录。") + private String plugRandomKey; + +}