16 lines
371 B
Plaintext
16 lines
371 B
Plaintext
|
|
package com.bonus.sys.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
import com.bonus.sys.beans.SysDictTypeBean;
|
||
|
|
|
||
|
|
|
||
|
|
public interface SysDictTypeService extends BaseService<SysDictTypeBean> {
|
||
|
|
|
||
|
|
public Integer batchDeleteByList(List<Integer> noHas);
|
||
|
|
|
||
|
|
public Map<String,List<Integer>> checkHasChild(String ids);
|
||
|
|
}
|