bug--修复拼团产品删除了还存在

This commit is contained in:
taochengbo
2020-05-23 00:34:07 +08:00
parent ceeaea67b5
commit 8184029061

View File

@ -42,6 +42,7 @@ public class StoreCombinationController {
@GetMapping(value = "/yxStoreCombination")
@PreAuthorize("@el.check('admin','YXSTORECOMBINATION_ALL','YXSTORECOMBINATION_SELECT')")
public ResponseEntity getYxStoreCombinations(YxStoreCombinationQueryCriteria criteria, Pageable pageable){
criteria.setIsDel(0);
return new ResponseEntity(yxStoreCombinationService.queryAll(criteria,pageable),HttpStatus.OK);
}