| | |
| | | import com.java110.store.dao.IStoreServiceDao; |
| | | import com.java110.store.smo.IStoreServiceSMO; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | |
| | | @Transactional |
| | | public class StoreServiceSMOImpl extends BaseServiceSMO implements IStoreServiceSMO { |
| | | |
| | | private final static Logger logger = LoggerFactory.getLogger(StoreServiceSMOImpl.class); |
| | | |
| | | @Override |
| | | public JSONObject service(BusinessServiceDataFlow businessServiceDataFlow) throws SMOException { |