GitBucket
4.23.0
Toggle navigation
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
yn-bftl-byx
/
thirdparty
Browse code
实体
master
1 parent
1eda6ed
commit
86567c73addff779b82cdddcc34e8d79601bcc7e
steven
authored
on 23 Aug
Patch
Showing
2 changed files
src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretDTO.java
src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretSpecifications.java
Ignore Space
Show notes
View
src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretDTO.java
0 → 100644
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; }
Ignore Space
Show notes
View
src/main/java/com/yn/bftl/thirdparty/common/dto/BaseSecretSpecifications.java
0 → 100644
package com.yn.bftl.thirdparty.common.dto; import lombok.Data; @Data public class BaseSecretSpecifications { protected String tradeWayCode; protected String tradeWayFeilds; }
Show line notes below