You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
482 B
26 lines
482 B
9 months ago
|
|
||
|
|
||
|
package com.zhongyun.service;
|
||
|
|
||
|
import com.zhongyun.common.page.PageData;
|
||
|
import com.zhongyun.common.service.BaseService;
|
||
|
import com.zhongyun.dto.LevelDTO;
|
||
|
import com.zhongyun.entity.LevelEntity;
|
||
|
|
||
|
import java.util.Collection;
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* 新闻
|
||
|
*
|
||
|
* @author Gaoming fangaoming0208@aliyun.com
|
||
|
*/
|
||
|
public interface LevelService extends BaseService<LevelEntity> {
|
||
|
|
||
|
List<LevelDTO> list();
|
||
|
void updateBatch(List<LevelDTO> dtoList);
|
||
|
|
||
|
}
|
||
|
|