mirror of
https://gitee.com/willfree/min-dev-java.git
synced 2026-06-13 16:58:35 +08:00
29 lines
956 B
Java
29 lines
956 B
Java
package MISConnection.Model;
|
|
|
|
import VMSConnection.TCPNet.Message.BaseStruct;
|
|
|
|
/*
|
|
* @Author: Wang Feng
|
|
* @Description:
|
|
* @Version: 1.0.0
|
|
* @Date: 16:13 2021/8/24
|
|
* @Copyright: MIN-Group;国家重大科技基础设施——未来网络北大实验室;深圳市信息论与未来网络重点实验室
|
|
*/
|
|
public class UploadEncryptedPrikeyRequest extends BaseStruct {
|
|
public String IdentityIdentifier;
|
|
public String Passwd;
|
|
public String PrikeyEncrypted;
|
|
public String Phone;
|
|
public String VerificationCode;
|
|
|
|
public UploadEncryptedPrikeyRequest(String identityIdentifier,
|
|
String passwd, String prikeyEncrypted,
|
|
String phone, String verificationCode) {
|
|
IdentityIdentifier = identityIdentifier;
|
|
Passwd = passwd;
|
|
PrikeyEncrypted = prikeyEncrypted;
|
|
Phone = phone;
|
|
VerificationCode = verificationCode;
|
|
}
|
|
}
|