|
@@ -30,6 +30,7 @@ import com.fs.store.mapper.FsWarehousesMapper;
|
|
|
import com.fs.store.param.*;
|
|
|
import com.fs.store.service.*;
|
|
|
import com.fs.store.vo.*;
|
|
|
+import com.hc.openapi.tool.fastjson.JSON;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -393,6 +394,8 @@ public class FsStoreOrderController extends BaseController {
|
|
|
@Log(title = "订单", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody FsStoreOrder fsStoreOrder) {
|
|
|
+ logger.info("修改订单 参数: {}", JSON.toJSONString(fsStoreOrder));
|
|
|
+
|
|
|
return toAjax(fsStoreOrderService.updateFsStoreOrder(fsStoreOrder));
|
|
|
}
|
|
|
|