17 lines
322 B
Plaintext
17 lines
322 B
Plaintext
package com.bonus.bm.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.bonus.bm.beans.ModelBean;
|
|
import com.bonus.sys.BaseService;
|
|
|
|
public interface ModelService extends BaseService<ModelBean>{
|
|
|
|
public int insertBean(ModelBean o);
|
|
|
|
public void deleteBatch(String chks);
|
|
|
|
public List<ModelBean> findModel(ModelBean o);
|
|
|
|
}
|