1.pms主网测点数据统计功能调整

This commit is contained in:
2024-10-23 18:15:16 +08:00
parent b3f553c450
commit c80e2cd825
5 changed files with 89 additions and 74 deletions

View File

@@ -1,5 +1,6 @@
package com.njcn.common.pojo.exception;
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
import com.njcn.common.pojo.response.HttpResult;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -83,5 +84,6 @@ public class BusinessException extends RuntimeException {
public BusinessException(String message) {
super(message);
this.message = message;
this.code = CommonResponseEnum.FAIL.getCode();
}
}