123456789101112131415161718 |
- package com.fdkankan.fusion.mapper;
- import com.fdkankan.fusion.entity.CaseSettings;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author
- * @since 2022-12-14
- */
- @Mapper
- public interface ICaseSettingsMapper extends BaseMapper<CaseSettings> {
- }
|