Commit 4240be83 authored by hanfeng's avatar hanfeng

Merge branch 'master-customer-management'

parents 8e22eff9 0ca5aab8
......@@ -29,6 +29,7 @@ public class AppStaffUserBiz extends BaseBiz<AppStaffUserMapper, AppStaffUser> {
public List<AppStaffUser> getAll(Integer id) {
Example example = new Example(AppStaffUser.class);
example.createCriteria().andEqualTo("suId",id).andEqualTo("isDel",0);
example.orderBy("crtTime").desc();
return selectByExample(example);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment