|
@@ -65,6 +65,7 @@ public class ShopLogServiceImpl implements IShopLogService {
|
|
|
wrapper.eq("admin_id", adminId);
|
|
|
}
|
|
|
wrapper.eq("delete_flag", 0);
|
|
|
+ wrapper.orderBy("gmt_create", false);
|
|
|
List<ShopLog> list = shopLogMapper.selectPage(new RowBounds((page - 1) * limit, limit), wrapper);
|
|
|
Integer count = shopLogMapper.selectCount(wrapper);
|
|
|
return new Page<ShopLog>(list, page, limit, count);
|