| | |
| | | import com.java110.service.dao.IQueryServiceDAO; |
| | | import com.java110.service.smo.IQueryServiceSMO; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | 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; |
| | |
| | | @Transactional |
| | | public class QueryServiceSMOImpl extends LoggerEngine implements IQueryServiceSMO { |
| | | |
| | | |
| | | private final static Logger logger = LoggerFactory.getLogger(QueryServiceSMOImpl.class); |
| | | |
| | | |
| | | @Autowired |
| | | private IQueryServiceDAO queryServiceDAOImpl; |
| | | |