This commit is contained in:
2023-03-23 11:06:25 +08:00
parent 80da9cae9b
commit 6e74eb4a95
3 changed files with 0 additions and 155 deletions

View File

@@ -12,7 +12,6 @@ import com.jsowell.service.PileService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -73,15 +72,4 @@ public class JumpController extends BaseController {
return response;
}
/**
* 迁移异常订单到订单主表
* 临时接口,使用完删除
* http://localhost:8080/app-xcx-h5/moveAbnormalOrder
* @return
*/
@PostMapping("/moveAbnormalOrder")
public RestApiResponse<?> moveAbnormalOrder() {
orderBasicInfoService.moveAbnormalOrder();
return null;
}
}