Package org.jeecgframework.core.annotation.query

Examples of org.jeecgframework.core.annotation.query.QueryTimeFormat


          }else{
            map.get(type).addCriteria(cq, aliasName, value, beginValue,
                endValue);
          }
        } else if ("class java.util.Date".equals(type)) {
          QueryTimeFormat format = origDescriptors[i].getReadMethod()
              .getAnnotation(QueryTimeFormat.class);
          SimpleDateFormat userDefined = null;
          if (format != null) {
            userDefined = new SimpleDateFormat(format.format());
          }
          if (StringUtils.isNotBlank(beginValue)) {
            if (userDefined != null) {
              cq.ge(aliasName, time.parse(beginValue));
            } else if (beginValue.length() == 19) {
View Full Code Here

TOP

Related Classes of org.jeecgframework.core.annotation.query.QueryTimeFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.