|
@@ -22,6 +22,7 @@ import com.fs.hisStore.service.IFsStoreProductAttrValueScrmService;
|
|
|
import com.fs.hisStore.service.IFsStoreProductScrmService;
|
|
|
import com.mysql.cj.util.StringUtils;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.ResponseEntity;
|
|
@@ -39,6 +40,7 @@ import java.util.List;
|
|
|
* @author fs
|
|
|
* @date 2022-03-15
|
|
|
*/
|
|
|
+@Slf4j
|
|
|
@RestController
|
|
|
@RequestMapping("/store/store/storeProduct")
|
|
|
public class FsStoreProductScrmController extends BaseController
|
|
@@ -73,6 +75,7 @@ public class FsStoreProductScrmController extends BaseController
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(FsStoreProductScrm fsStoreProduct)
|
|
|
{
|
|
|
+ log.info("查询商品列表 参数: {}", fsStoreProduct);
|
|
|
startPage();
|
|
|
List<FsStoreProductListVO> list;
|
|
|
if(StringUtils.isNullOrEmpty(fsStoreProduct.getBarCode())){
|