/* (non-Javadoc)
  * @see com.jlj.service.imp.IIssuedcommandService#getTotalCount(int, java.lang.String)
  */
 public int getTotalCount(int con, String convalue) {
   String queryString = "select count(*) from Issuedcommand mo where 1=1 ";
   Object[] p = null;
   if (con != 0 && convalue != null && !convalue.equals("")) {
     // 线路名称
     if (con == 1) {
       queryString += "and mo.name like ? ";
     }
     p = new Object[] {'%' + convalue + '%'};
   }
   //		queryString += " order by mo.id desc ";
   return issuedcommandDao.getUniqueResult(queryString, p);
 }