| | |
| | | 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; |
| | |
| | | @RequestMapping(path = "/centerApi") |
| | | public class CenterApi extends BaseController { |
| | | |
| | | protected final static Logger logger = LoggerFactory.getLogger(CenterApi.class); |
| | | |
| | | |
| | | @Autowired |
| | | private ICenterServiceSMO centerServiceSMOImpl; |
| | | |