| 1234567891011121314151617181920 |
- package com.ydtech.modules.fnc.dao;
- import com.ydtech.modules.fnc.entity.InsFeeAudit;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author gws
- * @since 2023-11-22
- */
- @Mapper
- public interface InsFeeAuditMapper extends BaseMapper<InsFeeAudit> {
- }
|