jyy
2021-05-10 f12b519702e4c4c246238f79f95215f8cd26dea7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.matrix.system.shopXcx.api.trackquery;
 
import com.matrix.core.pojo.AjaxResult;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
/**
 * 物流查询
 * @author 彭良
 * @email
 * @date
 */
 
@Controller
@RequestMapping(value = "wxapi/trackQueryAction")
public class TrackQueryAction {
 
    /**
     * 查询物流信息
     * @return
     */
    @RequestMapping(value = "/showlist")
    @ResponseBody
    public AjaxResult showList(@RequestBody TrackQueryBean bean){
 
        return  new AjaxResult();
    }
}