|
|
@@ -13,11 +13,11 @@ import com.goafanti.order.bo.InputNewOrderRefund;
|
|
|
import com.goafanti.order.bo.InputTChangeTask;
|
|
|
import com.goafanti.order.bo.NewOrderChangeBo;
|
|
|
import com.goafanti.order.service.OrderChangeService;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import java.io.IOException;
|
|
|
@@ -27,7 +27,7 @@ import java.util.Objects;
|
|
|
@RequestMapping(value = "/api/admin/orderChange")
|
|
|
public class OrderChangeApiController extends CertifyApiController {
|
|
|
|
|
|
- @Autowired
|
|
|
+ @Resource
|
|
|
private OrderChangeService orderChangeService;
|
|
|
|
|
|
|