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.
19 lines
438 B
Java
19 lines
438 B
Java
package com.supervision.springaidemo.mapper;
|
|
|
|
import com.supervision.springaidemo.domain.VpCommonDic;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* @author flevance
|
|
* @description 针对表【vp_common_dic(通用字典表)】的数据库操作Mapper
|
|
* @createDate 2024-05-23 10:24:49
|
|
* @Entity com.supervision.springaidemo.domain.VpCommonDic
|
|
*/
|
|
public interface VpCommonDicMapper extends BaseMapper<VpCommonDic> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|