15 lines
316 B
Plaintext
15 lines
316 B
Plaintext
package com.bonus.ma.service;
|
|
|
|
import com.bonus.ma.beans.CheckQrCodeBean;
|
|
import com.bonus.sys.BaseService;
|
|
|
|
public interface CheckQrCodeService extends BaseService<CheckQrCodeBean>{
|
|
|
|
public int insertBean(CheckQrCodeBean o);
|
|
|
|
public void deleteBatch(String chks);
|
|
|
|
public int findCount(CheckQrCodeBean o);
|
|
|
|
}
|