Commit 1e485879 by zhiwj

bug

parent 3b4bb894
......@@ -190,6 +190,9 @@ public class StoreController extends DownloadUtils {
if (!returnFileds.contains(StoreESFieldsEnum.COMPLETESTATUS.getField())) {
returnFileds += "," + StoreESFieldsEnum.COMPLETESTATUS.getField();
}
if (!returnFileds.contains(StoreESFieldsEnum.STATUS.getField())) {
returnFileds += "," + StoreESFieldsEnum.STATUS.getField();
}
ServiceResponse<Page<StoreDTO>> serviceResponse = storeApiService.listStore(storeSearchDTO, storeSearchDTO.getCurrentPage(), storeSearchDTO.getPageSize(), returnFileds);
if (serviceResponse.isSuccess()) {
Page<StoreDTO> page = serviceResponse.getResult();
......
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