Commit b7e5a348 authored by yanzg's avatar yanzg

压缩视频

parent 33dd75a6
...@@ -45,12 +45,12 @@ public class SqlCondDefault extends SqlCondBase { ...@@ -45,12 +45,12 @@ public class SqlCondDefault extends SqlCondBase {
// 只要有值不为空,则条件满足 // 只要有值不为空,则条件满足
return COND_TYPE_CODE_COND; return COND_TYPE_CODE_COND;
} }
} else if (isInputField) {
// 前台输入参数,直接参数对接到SQL语句中
return COND_TYPE_CONST_ONLY_PARA;
} else if (isConst) { } else if (isConst) {
// 常量SQL语句 // 常量SQL语句
return COND_TYPE_CODE_COND; return COND_TYPE_CODE_COND;
} else if (isInputField && !isConst && !isCond) {
// 前台输入参数,直接参数对接到SQL语句中
return COND_TYPE_CONST_ONLY_PARA;
} }
return COND_TYPE_NONE; return COND_TYPE_NONE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment