审查视图

src/main/java/com/sy/service/impl/BusnessViewImpl.java 616 字节
xudada authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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);
    }
}