15 lines
289 B
Java
15 lines
289 B
Java
package com.gxwebsoft.common.system.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.gxwebsoft.common.system.entity.Dict;
|
|
|
|
/**
|
|
* 字典Service
|
|
*
|
|
* @author WebSoft
|
|
* @since 2020-03-14 11:29:03
|
|
*/
|
|
public interface DictService extends IService<Dict> {
|
|
|
|
}
|