package com.ygj.yuemum.service.pay; import com.ygj.yuemum.dao.pay.DiscountChannelDao; import com.ygj.yuemum.domain.pay.DiscountChannel; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class DiscountChannelService { @Autowired private DiscountChannelDao discountChannelDao; public List getDiscountChannelSelect() { return discountChannelDao.getDiscountChannelSelect(); } }