hxb
2023-06-30 07671116767c77058b3ce584be161b4b194ec9bd
app/src/main/java/com/hdl/photovoltaic/uni/HDLUniMP.java
@@ -69,27 +69,27 @@
     */
    public static class UniCallBackBaseBean implements Serializable {
        private String code;//状态码
        private int code;//状态码
        private String mes;//信息描述
        private String type;//功能类型
        private Object data;//附加json数据
        public UniCallBackBaseBean(String code, String mes) {
        public UniCallBackBaseBean(int code, String mes) {
            this.code = code;
            this.mes = mes;
        }
        public UniCallBackBaseBean() {
            this.code = "0";
            this.code = 0;
            this.mes = "成功";
        }
        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;
        }