21 lines
510 B
Plaintext
21 lines
510 B
Plaintext
|
|
package com.bonus.bm.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.bonus.bm.beans.AreaTypeBean;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
import com.bonus.sys.beans.ZNode;
|
||
|
|
|
||
|
|
public interface AreaTypeService extends BaseService<AreaTypeBean>{
|
||
|
|
|
||
|
|
public int insertBean(AreaTypeBean o);
|
||
|
|
|
||
|
|
public void deleteBatch(String chks);
|
||
|
|
|
||
|
|
public List<AreaTypeBean> findAreaType(AreaTypeBean o);
|
||
|
|
public List<AreaTypeBean> findma(AreaTypeBean o);
|
||
|
|
public List<AreaTypeBean> findmt(AreaTypeBean o);
|
||
|
|
public List<ZNode> orgTree();
|
||
|
|
|
||
|
|
}
|