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