BusnessViewImpl.java
616 字节
package com.sy.service.impl;
import com.sy.mapper.businesstypelistinfo_viewMapper;
import com.sy.model.businesstypelistinfo_view;
import com.sy.service.BusnessViewService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class BusnessViewImpl implements BusnessViewService {
@Autowired
businesstypelistinfo_viewMapper businesstypelistinfo_viewMapper;
@Override
public List<businesstypelistinfo_view> selectawb(String awba) {
return businesstypelistinfo_viewMapper.selectawb(awba);
}
}