求大神告诉我这段代码里的等号后边第一个where 是什么意思?第二个where是什么意思?还有sx为什么后边还要写个+
public List<GongWenLeiBie> getList(int sx)
{
String where="";
if(sx!=0)
{
where=where+"where shunXu="+sx+"";
}
return this.findAll(where);
}