ZengTao
2024-10-24 22fb46f2db1714a6b450b353669d26908884653f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mes.sysdict.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.sysdict.entity.SysDictType;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author wu
 * @since 2024-09-05
 */
public interface SysDictTypeService extends IService<SysDictType> {
 
}