| File was renamed from CenterService/src/main/java/com/java110/center/api/CenterApi.java |
| | |
| | | package com.java110.center.api; |
| | | package com.java110.order.api; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.center.smo.ICenterServiceSMO; |
| | | import com.java110.order.smo.ICenterServiceSMO; |
| | | import com.java110.common.constant.ResponseConstant; |
| | | import com.java110.common.exception.BusinessException; |
| | | import com.java110.common.util.Assert; |
| | | import com.java110.core.base.controller.BaseController; |
| | | import com.java110.core.factory.DataTransactionFactory; |
| | | import com.java110.event.center.DataFlowEventPublishing; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | |
| | |
| | | @RestController |
| | | @Api(value = "中心服务接口服务规范") |
| | | @RequestMapping(path = "/centerApi") |
| | | @Deprecated |
| | | public class CenterApi extends BaseController { |
| | | |
| | | protected final static Logger logger = LoggerFactory.getLogger(CenterApi.class); |