You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
381 B
Java
14 lines
381 B
Java
10 months ago
|
package com.supervision.springaidemo.service;
|
||
|
|
||
|
import com.supervision.springaidemo.domain.VpCommonDic;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
||
|
/**
|
||
|
* @author flevance
|
||
|
* @description 针对表【vp_common_dic(通用字典表)】的数据库操作Service
|
||
|
* @createDate 2024-05-23 10:24:49
|
||
|
*/
|
||
|
public interface VpCommonDicService extends IService<VpCommonDic> {
|
||
|
|
||
|
}
|