Package com.google.code.lightssh.common.dao

Examples of com.google.code.lightssh.common.dao.SearchCondition.notEqual()


  @Deprecated
  protected int getUnsuccessfulCount(String planId,String planDetailId ){
    ListPage<PlanDetail> page = new ListPage<PlanDetail>(0);
    SearchCondition sc = new SearchCondition();
    sc.equal("plan.id", planId);
    sc.notEqual("id", planDetailId);
    sc.notEqual("status", Status.SUCCESS );
   
    page = planDetailDao.list(page, sc);
   
    return page.getAllSize();
View Full Code Here


  protected int getUnsuccessfulCount(String planId,String planDetailId ){
    ListPage<PlanDetail> page = new ListPage<PlanDetail>(0);
    SearchCondition sc = new SearchCondition();
    sc.equal("plan.id", planId);
    sc.notEqual("id", planDetailId);
    sc.notEqual("status", Status.SUCCESS );
   
    page = planDetailDao.list(page, sc);
   
    return page.getAllSize();
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.