| | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.HttpStatus; |
| | | import org.springframework.http.ResponseEntity; |
| | |
| | | |
| | | /** |
| | | * 查询服务 |
| | | * Created by wuxw on 2018/4/20. |
| | | * add by wuxw on 2018/4/20. |
| | | * modify by wuxw on 2019/4/20. |
| | | * @version 1.1 |
| | | */ |
| | | @RestController |
| | | @Api(value = "查询业务统一提供服务") |
| | | public class BusinessApi extends BaseController { |
| | | |
| | | private final static Logger logger = LoggerFactory.getLogger(BusinessApi.class); |
| | | |
| | | @Autowired |
| | | private IQueryServiceSMO queryServiceSMOImpl; |
| | | |