|
@@ -92,7 +92,9 @@ public class AuthenticateController extends BaseController {
|
|
|
*/
|
|
|
public BusinessContext listGqBySzd(CodeEntity szd) {
|
|
|
List<PredicateModel> filterList = new ArrayList<PredicateModel>();
|
|
|
- addNotEmptyModel(filterList, "szd", szd, Operator.EQ);
|
|
|
+ if(szd!=null){
|
|
|
+ addNotEmptyModel(filterList, "szd.id", szd.getId(), Operator.LIKE_R);
|
|
|
+ }
|
|
|
// 只检索非删除状态记录
|
|
|
addNotEmptyModel(filterList, "recordStatus",
|
|
|
BaseEntity.RECORD_STATE_DELETE, Operator.NEQ);
|