package com.hdl.sdk.link.bean; import java.io.Serializable; /** * Created by Tong on 2022/09/23. */ public class LoginRequest implements Serializable { private String clientType; private String version; public String getClientType() { return clientType; } public void setClientType(String clientType) { this.clientType = clientType; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } }