12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
|
|
package com.bonus.newInput.service;
|
||
|
|
|
||
|
|
import com.bonus.newInput.beans.NewInputCheckBean;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
|
||
|
|
public interface NewInputCheckService extends BaseService<NewInputCheckBean> {
|
||
|
|
|
||
|
|
int isSure(NewInputCheckBean o);
|
||
|
|
|
||
|
|
|
||
|
|
}
|