gasWellWatch/src/main/java/com/isu/gaswellwatch/service/DictionaryService.java

22 lines
450 B
Java
Raw Normal View History

2024-11-22 17:57:39 +08:00
package com.isu.gaswellwatch.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.isu.gaswellwatch.entity.Dictionary;
import java.util.List;
public interface DictionaryService extends IService<Dictionary> {
void add(Dictionary dictionary);
void edit(Dictionary dictionary);
void delete(Long id);
List<Dictionary> getByType(String type);
Dictionary getByTypeAndCode(String type,String code);
}