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();
|
}
|
}
|