cn.authing.sdk.java.dto.GetUserPasswordCiphertextDataDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GetUserPasswordCiphertextDataDto {
/**
* 用户密码加密的密文
*/
@JsonProperty("ciphertext")
private String ciphertext;
public String getCiphertext() {
return ciphertext;
}
public void setCiphertext(String ciphertext) {
this.ciphertext = ciphertext;
}
}