|
@@ -597,19 +597,19 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
|
|
|
return true;
|
|
|
}
|
|
|
case ">":
|
|
|
- if (checkVal >= limitVal) {
|
|
|
+ if (checkVal > limitVal) {
|
|
|
return true;
|
|
|
}
|
|
|
case "≤":
|
|
|
- if (checkVal >= limitVal) {
|
|
|
+ if (checkVal <= limitVal) {
|
|
|
return true;
|
|
|
}
|
|
|
case "<":
|
|
|
- if (checkVal >= limitVal) {
|
|
|
+ if (checkVal < limitVal) {
|
|
|
return true;
|
|
|
}
|
|
|
case "=":
|
|
|
- if (checkVal >= limitVal) {
|
|
|
+ if (checkVal == limitVal) {
|
|
|
return true;
|
|
|
}
|
|
|
default:
|