|
|
@@ -54,9 +54,9 @@ public class StoreStaffConfigController {
|
|
|
public R<IPage<StoreStaffConfig>> getStaffConfigList(StoreStaffConfigListQueryDto query) {
|
|
|
Integer storeId = query == null ? null : query.getStoreId();
|
|
|
log.info("StoreStaffConfigController.getStaffConfigList?storeId={},query={}", storeId, query);
|
|
|
- if (storeId == null) {
|
|
|
- return R.fail("storeId未传入,请检查参数");
|
|
|
- }
|
|
|
+// if (storeId == null) {
|
|
|
+// return R.fail("storeId未传入,请检查参数");
|
|
|
+// }
|
|
|
return R.data(storeStaffConfigService.getStaffConfigList(query));
|
|
|
}
|
|
|
|