Commit 333cbc55 by 陶光胜

修改

parent 8e352461
......@@ -91,9 +91,7 @@ public class StoreFieldController {
@RequestMapping("/list-store-field")
public RestResponse listStoreField(String search) {
Integer enterpriseId = UserDetailUtils.getUserDetail().getEnterpriseId();
ServiceResponse<List<StoreFieldDTO>> result = storeFieldApiService
.listStoreField(UserDetailUtils.getUserDetail().getEnterpriseInfo().getEnterpriseId(), search);
ServiceResponse<List<StoreFieldDTO>> result = storeFieldApiService.listStoreField(enterpriseId, search);
if (result.isSuccess()) {
return RestResponse.success(transferDtoToVo(result.getResult(), enterpriseId));
} else {
......
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