28 lines
655 B
Plaintext
28 lines
655 B
Plaintext
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<QRCodeBean>{
|
|
|
|
List<QRCodeBean> findQRCode(QRCodeBean o);
|
|
|
|
List<QRCodeBean> findQRCodeInfo(QRCodeBean o);
|
|
|
|
List<QRCodeBean> findQRCodeByTaskType(QRCodeBean o);
|
|
|
|
public List<QRCodeBean> findAllCode();
|
|
|
|
List<QRCodeBean> findQrcodeByTaskId(QRCodeBean o);
|
|
|
|
List<NewInputQrcodeBean> findQrcodeByTaskIdApp(NewInputQrcodeBean o);
|
|
|
|
List<QRCodeBean> findAll(QRCodeBean o);
|
|
|
|
List<QRCodeBean> findAllDetails(QRCodeBean o);
|
|
|
|
}
|