推送邮政订单测试
parent
11f69ca5f0
commit
b37aa22783
|
|
@ -0,0 +1,19 @@
|
|||
package com.cpxt.web.controller.biz;
|
||||
|
||||
import com.cpxt.common.annotation.Anonymous;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
@Slf4j
|
||||
@RequestMapping("/cpxt-api/api/order")
|
||||
public class OpenContrller {
|
||||
|
||||
@Anonymous
|
||||
@PostMapping("/orderStatusChangePush")
|
||||
public void orderStatusChangePush() {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue