码迷,mamicode.com
首页 > 其他好文 > 详细

空字符串

时间:2016-09-17 17:50:54      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

前端

function goto(){
				getPage(${usersession.hasPrivilegeByName(‘Business Trip‘)},"","");
	  		}

 后端

if("".equals(orderItem)){			
			return getSession().createQuery("FROM Trip t WHERE t.name LIKE ‘%" +keyword+ "%‘ OR t.part LIKE ‘%" +keyword+ "%‘ OR t.destination LIKE ‘%" +keyword+ "%‘ ")
					.list();
		}
		else {
			return getSession().createQuery("FROM Trip t WHERE t.name LIKE ‘%" +keyword+ "%‘ OR t.part LIKE ‘%" +keyword+ "%‘ OR t.destination LIKE ‘%" +keyword+ "%‘ ORDER BY "+orderItem+" "+orderKey)
					.list();
		}

 

空字符串

标签:

原文地址:http://www.cnblogs.com/wujixing/p/5879136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!