| | |
| | | package com.hdl.photovoltaic.uni; |
| | | |
| | | |
| | | import com.google.gson.Gson; |
| | | |
| | | import org.json.JSONObject; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | public final static String UNI_EVENT_GetAppParams = "uni_GetAppParams";//获取APP应用信息 |
| | | |
| | | //region --------【小程序】发送到【原生】-------- |
| | | |
| | | |
| | | /*********用户 模块*********/ |
| | | public final static String UNI_EVENT_REPLY_USER_MODEL = "uni_user_model";//用户模块(大类) |
| | | public final static String UNI_EVENT_REPLY_USER_INFO = "user_info";//用户信息 |
| | | public final static String UNI_EVENT_REPLY_USER_LOCAL_INFO = "user_local_info";//用户本地缓存信息 |
| | | public final static String UNI_EVENT_REPLY_USER_IMAGE = "user_image";//用户头像 |
| | | |
| | | |
| | | /*********住宅【电站】模块*********/ |
| | | public final static String UNI_EVENT_REPLY_HOME_MODEL = "uni_home_model";//住宅模块(大类) |
| | | public final static String UNI_EVENT_REPLY_HOME_LIST = "list";//获取住宅【电站】列表 |
| | | public final static String UNI_EVENT_REPLY_HOME_CREATION = "creation";//住宅【电站】创建 |
| | | public final static String UNI_EVENT_REPLY_HOME_EDIT = "edit";//住宅【电站】编辑 |
| | | public final static String UNI_EVENT_REPLY_HOME_DETAILS = "details";//住宅【电站】详情 |
| | | public final static String UNI_EVENT_REPLY_Home_DEl = "del";//住宅【电站】删除 |
| | | public final static String UNI_EVENT_REPLY_HOME_DEl = "del";//住宅【电站】删除 |
| | | |
| | | public final static String UNI_EVENT_REPLY_HOME_CLOSE_HOME_DETAILS_PAGE = "close_home_details_page";//关闭详情页 |
| | | /*********设备模块*********/ |
| | | public final static String UNI_EVENT_REPLY_DEVICE_MODEL = "uni_device_model";//设备模块(大类) |
| | | public final static String UNI_EVENT_REPLY_DEVICE_LIST = "list";//逆变器设备列表 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_LIST = "list";//本地逆变器设备列表 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_NET_LIST = "net_list";//网络逆变器设备列表 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_CHILD_LIST = "child_list";//逆变器【下挂】设备列表 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_ADD = "add";//设备添加 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_ADD_All = "add_all";//添加多个设备 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_DEL = "del";//设备删除 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_OID = "oid";//设备【包括下挂设备】oid列表 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_TIME = "time";//设备时间读取 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_TIME_EDIT = "time_edit";//设备时间编辑 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_CLEAR_DATA = "clear_data";//设备清空住宅id |
| | | public final static String UNI_EVENT_REPLY_DEVICE_UPLOADING_DATA = "uploading_data";//设备上传数据 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_MODBUS_SEND = "modbus_send";//modbus协议 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_Link_edit_SEND = "link_property_edit";//link协议属性编辑 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_Link_read_SEND = "link_property_read";//link协议属性读取 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_MESSAGE_NUMBER = "message_number";//消息总数量 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_DELETE_OID = "delete_Oid";//删除设备oid |
| | | public final static String UNI_EVENT_REPLY_DEVICE_INITIALIZEINVERTER = "initializeInverter";//重置逆变器 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_REMOTEINFO = "set_device_remoteInfo";//设置设备远程信息 |
| | | |
| | | /*********Wifi模块*********/ //卫锦定义 |
| | | |
| | | /*********OTA模块*********/ |
| | | public final static String UNI_EVENT_REPLY_OTA_MODEL = "uni_ota_model";//升级模块(大类) |
| | | public final static String UNI_EVENT_REPLY_OTA_CLOUD_OID_LIST = "cloud_oid_list";//向云端获取oid列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_FIRMWARES_LIST = "firmwares_current_list";//当前设备固件列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_FIRMWARES_NEW_LIST = "firmwares_new_list";//设备新固件列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_FIRMWARES_LOCAL = "firmwares_local_list";//设备本地固件列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_FIRMWARES_DOWNLOAD = "firmwares_download";//设备固件下载 |
| | | public final static String UNI_EVENT_REPLY_OTA_FIRMWARES_UPGRADE = "firmwares_upgrade";//设备固件升级 |
| | | public final static String UNI_EVENT_REPLY_OTA_DRIVER_LIST = "driver_current_list";//当前设备驱动列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_DRIVER_NEW = "driver_new_list";//设备新驱动列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_DRIVER_LOCAL = "driver_local_list";//设备本地驱动列表 |
| | | public final static String UNI_EVENT_REPLY_OTA_DRIVER_DOWNLOAD = "driver_download";//设备驱动下载 |
| | | public final static String UNI_EVENT_REPLY_OTA_DRIVER_UPGRADE = "driver_upgrade";//设备驱动升级 |
| | | public final static String UNI_EVENT_REPLY_OTA_CANCEL_UPGRADE = "cancel_upgrade";//设备驱动,固件取消升级 |
| | | public final static String UNI_EVENT_REPLY_OTA_DRIVER_CANCEL_DOWNLOAD = "cancel_download";//设备取消下载升级文件 |
| | | public final static String UNI_EVENT_REPLY_OTA_OPEN_SERVICE = "open_service";//打开服务 |
| | | public final static String UNI_EVENT_REPLY_OTA_CLOSE_SERVICE = "close_service";//关闭服务 |
| | | |
| | | /*********其它模块*********/ |
| | | public final static String UNI_EVENT_REPLY_OTHER_MODEL = "uni_other_model";//其它模块(大类) |
| | | public final static String UNI_EVENT_REPLY_OTHER_UNIT = "temperature_unit";//获取温度单位 |
| | | public final static String UNI_EVENT_REPLY_OTHER_APP_LANGUAGE = "app_language";//获取app语言 |
| | | public final static String UNI_EVENT_REPLY_OTHER_LOCATION_INFO = "location_info";//获取app位置信息 |
| | | public final static String UNI_EVENT_REPLY_OTHER_UNI_LOG = "uni_log";//收集uni日志 |
| | | public final static String UNI_EVENT_REPLY_OTHER_BACK = "back";//首页返回 |
| | | public final static String UNI_EVENT_REPLY_OTHER_APPLICATION_CONFLICT = "application_conflict";//应用冲突 |
| | | public final static String UNI_EVENT_REPLY_OTHER_LOGOUT = "uni_logout";//退出登录 |
| | | |
| | | |
| | | /*********C端【我的】模块*********/ |
| | | public final static String UNI_EVENT_REPLY_MINE_MODEL = "uni_mine_model";//我的模块(大类) |
| | | public final static String UNI_EVENT_REPLY_MINE_USER_INFO = "get_user_info";//个人信息获取: |
| | | public final static String UNI_EVENT_REPLY_MINE_EDIT_AVATAR = "edit_avatar";//头像更新 |
| | | public final static String UNI_EVENT_REPLY_MINE_EDIT_USER_INFO = "edit_user_info";//资料编辑 |
| | | public final static String UNI_EVENT_REPLY_MINE_SELECTED_POWERSTATION = "selected_powerstation";//电站选择 |
| | | public final static String UNI_EVENT_REPLY_MINE_MESSAGE_CENTER = "message_center";//消息中心 |
| | | public final static String UNI_EVENT_REPLY_MINE_USER_MANAGER = "user_manager";//用户管理 |
| | | public final static String UNI_EVENT_REPLY_MINE_ABOUT = "about";//关于 |
| | | public final static String UNI_EVENT_REPLY_MINE_SETTING = "setting";//设置 |
| | | |
| | | |
| | | /*********Wifi模块*********/ |
| | | public final static String UNI_EVENT_REPLY_WIFI_MODEL = "uni_wifi_model";//wifi模块(大类) |
| | | public final static String UNI_EVENT_REPLY_WIFI_LIST = "list";//获取wifi列表 |
| | | public final static String UNI_EVENT_REPLY_WIFI_INFO = "info";//获取当前wifi信息 |
| | | public final static String UNI_EVENT_REPLY_WIFI_CONNECT = "connect";//连接wifi |
| | | public final static String UNI_EVENT_REPLY_PHONE_WIFI_LIST = "phone_wifi_list";//手机获取wifi列表 |
| | | public final static String UNI_EVENT_REPLY_PHONE_WIFI_INFO = "phone_wifi_info";//手机获取当前wifi信息 |
| | | public final static String UNI_EVENT_REPLY_PHONE_OPEN_WIFI_SETTINGS = "phone_open_wifi_settings";//调用打开手机Wifi设置界面 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_WIFI_SET = "device_wifi_set";//逆变器WiFi信息配置 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_WIFI_GET = "device_wifi_get";//逆变器WiFi信息获取 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_HOTSPOT_SET = "device_hotspot_set";//逆变器热点配置 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_HOTSPOT_GET = "device_hotspot_get";//逆变器热点获取 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_ETHERNET_SET = "device_ethernet_set";//逆变器以太网配置 |
| | | public final static String UNI_EVENT_REPLY_DEVICE_ETHERNET_GET = "device_ethernet_get";//逆变器以太网获取 |
| | | |
| | | //endregion |
| | | |
| | | //region --------【原生】主动发送到【小程序】-------- |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_MODEL = "uni_notification_model";//通知模块(大类) |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_LIST = "list";//逆变器设备列表 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_CHILD_LIST = "child_list";//逆变器【下挂】设备列表 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_REFRESH_DETAILS = "refresh_details";//刷新电站详情 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_REFRESH_USERINFO = "refresh_userinfo";//刷新用户信息 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_REFRESH_TEMPERATURE = "temperature_format_changed";//刷新单位温度 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_REFRESH_REFRESH_UNREAD_NUMBER = "refresh_unread_messages_number";//刷新未读消息数量 |
| | | public final static String UNI_EVENT_NOTIFICATION_MQTT_CONNECT_SUCCESS = "mqtt_connect_success";//通知mqtt连接成功 |
| | | public final static String UNI_EVENT_NOTIFICATION_REMOVE_VIEW = "remove_view";//通知uni移除界面 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_ADD = "add";//设备添加 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_DEL = "del";//设备删除 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_OID = "oid";//设备【包括下挂设备】oid列表 |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_OID = "oid";//设备【包括下挂设备】oid列表Remove interface |
| | | public final static String UNI_EVENT_NOTIFICATION_DEVICE_CONNECTION_STATUS = "connection_status";//逆变器连接路由器状态 |
| | | //endregion |
| | | |
| | | //region --------【原生】打开【小程序】-------- |
| | | /*********住宅模块*********/ |
| | | //页面路径带参数规则->(UNI_EVENT_OPEN_HOME_CREATION+?key=value&key=参数一) |
| | | public final static String UNI_EVENT_OPEN_HOME_CREATION = "pages/powerStation/powerStationCreate";//住宅【电站】创建 |
| | | public final static String UNI_EVENT_OPEN_HOME_CREATION = "pages/powerStation/powerStationQuickConfig";//"pages/powerStation/powerStationCreate";//住宅【电站】创建 |
| | | public final static String UNI_EVENT_OPEN_HOME_EDIT = "pages/powerStation/powerStationEdit";//住宅【电站】编辑 |
| | | public final static String UNI_EVENT_OPEN_HOME_DETAILS = "pages/powerStationDetail/index";//住宅【电站】详情 |
| | | |
| | | |
| | | public final static String UNI_EVENT_OPEN_HOME_DETAILS_C = "pages/powerStationDetail/tabbarPage";//C端打开【电站】详情 |
| | | public final static String UNI_EVENT_OPEN_HOME_Null_C = "pages/powerStationDetail/tabbarPage";//无电站时(不需要传参数) |
| | | public final static String UNI_EVENT_OPEN_DEVICE_DETAILS = "pages/powerStationDetail/childPage/device/detail";//设备详情 |
| | | public final static String UNI_EVENT_OPEN_HOME_DEl = "del";//住宅【电站】删除 |
| | | /*********设备模块*********/ |
| | | //设备模块打开页面全路径 |
| | |
| | | */ |
| | | public static class UniCallBackBaseBean implements Serializable { |
| | | |
| | | |
| | | private String path;//打开小程序路径(暂时用不上) |
| | | private String code;//状态码 |
| | | private String mes;//信息描述 |
| | | private int code;//状态码 |
| | | private String msg;//信息描述 |
| | | private String type;//功能类型 |
| | | private Object data;//附加json数据 |
| | | |
| | | public UniCallBackBaseBean(String code, String mes) { |
| | | public UniCallBackBaseBean(int code, String msg) { |
| | | this.code = code; |
| | | this.mes = mes; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UniCallBackBaseBean() { |
| | | this.code = "0"; |
| | | this.mes = "成功"; |
| | | this.code = 0; |
| | | this.msg = "成功"; |
| | | } |
| | | |
| | | |
| | | public String getCode() { |
| | | return code == null ? "" : code; |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | public void setCode(int code) { |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getMes() { |
| | | return mes == null ? "" : mes; |
| | | public String getMsg() { |
| | | return msg == null ? "" : msg; |
| | | } |
| | | |
| | | public void setMes(String mes) { |
| | | this.mes = mes; |
| | | public void setMsg(String msg) { |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public Object getData() { |
| | |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getPath() { |
| | | return path == null ? "" : path; |
| | | } |
| | | |
| | | public void setPath(String path) { |
| | | this.path = path; |
| | | } |
| | | |
| | | |