Source/UBCS/ubcs-service-api/ubcs-util-api/src/main/java/com/vci/ubcs/starter/util/UBCSSqlKeyword.java
@@ -38,7 +38,6 @@
   private static final String NOT_NULL = "_notnull";
   private static final String IGNORE = "_ignore";
   public UBCSSqlKeyword() {
   }
@@ -54,6 +53,7 @@
      }
      return sqlwhere;
   }
   private static String sqlKeywordValueSqlwhere(String field, Object value, SqlKeyword operation){
      String sqlwhere="";
      switch(operation) {
@@ -83,6 +83,7 @@
      }
      return sqlwhere;
   }
   private static String  dateValueSqlwhere(String field, Object value, SqlKeyword operation){
      String sqlwhere="";
      switch(operation) {
@@ -101,6 +102,7 @@
      }
      return sqlwhere;
   }
   public static String buildSqlwhere(Map<String, Object> query) {
      StringBuffer sb=new StringBuffer();
      if (!Func.isEmpty(query)) {
@@ -151,6 +153,7 @@
      return sb.toString();
   }
   public static void buildCondition(Map<String, Object> query, QueryWrapper<?> qw) {
      if (!Func.isEmpty(query)) {
         query.forEach((k, v) -> {
@@ -248,7 +251,8 @@
         });
      }
   }
   public static  MPJLambdaWrapper buildConditionByMapString(Map<String, String> query) {
   public static MPJLambdaWrapper buildConditionByMapString(Map<String, String> query) {
      MPJLambdaWrapper<?>qw=new MPJLambdaWrapper<>();
      if (!Func.isEmpty(query)) {
         query.forEach((k, v) -> {
@@ -294,6 +298,7 @@
      };
      return qw;
   }
   public static void buildConditionByMapString(Map<String, String> query, MPJLambdaWrapper<?> qw) {
      if (!Func.isEmpty(query)) {
         query.forEach((k, v) -> {