ssid和密码长度设置为60

This commit is contained in:
jia
2024-10-14 23:25:22 +08:00
parent c15463e0a6
commit c880b9c98b
2 changed files with 4 additions and 4 deletions
@@ -14,9 +14,9 @@ import java.io.Serializable;
*/
public class OrderDeviceConnectModel extends HeadModel implements Serializable {
//路由器wifi名
private byte[] ssid_name = new byte[20];
private byte[] ssid_name = new byte[60];
//路由器wifi密码
private byte[] ssid_password = new byte[20];
private byte[] ssid_password = new byte[60];
public byte[] getSsid_name() {
return ssid_name;