package com.bonus.ma.service; import java.util.List; import com.bonus.ma.beans.QRCodeBean; import com.bonus.newInput.beans.NewInputQrcodeBean; import com.bonus.sys.BaseService; public interface QRCodeService extends BaseService{ List findQRCode(QRCodeBean o); List findQRCodeInfo(QRCodeBean o); List findQRCodeByTaskType(QRCodeBean o); public List findAllCode(); List findQrcodeByTaskId(QRCodeBean o); List findQrcodeByTaskIdApp(NewInputQrcodeBean o); List findAll(QRCodeBean o); List findAllDetails(QRCodeBean o); }