|
|
@@ -26,6 +26,7 @@ import com.fs.hisStore.dto.StoreOrderProductDTO;
|
|
|
import com.fs.hisStore.param.FsStoreOrderParam;
|
|
|
import com.fs.hisStore.service.*;
|
|
|
import com.fs.hisStore.vo.*;
|
|
|
+import com.github.pagehelper.PageHelper;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
@@ -82,7 +83,7 @@ public class FsStoreHealthOrderScrmController extends BaseController {
|
|
|
// @PreAuthorize("@ss.hasPermi('store:healthStoreOrder:list')")
|
|
|
@PostMapping("/healthList")
|
|
|
public TableDataInfo healthStoreList(@RequestBody FsStoreOrderParam param) {
|
|
|
- startPage();
|
|
|
+ PageHelper.startPage(param.getPageNum(), param.getPageSize());
|
|
|
if(!StringUtils.isEmpty(param.getCreateTimeRange())){
|
|
|
param.setCreateTimeList(param.getCreateTimeRange().split("--"));
|
|
|
}
|