InsFeeAuditMapper.java 351 B

1234567891011121314151617181920
  1. package com.ydtech.modules.fnc.dao;
  2. import com.ydtech.modules.fnc.entity.InsFeeAudit;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * Mapper 接口
  8. * </p>
  9. *
  10. * @author gws
  11. * @since 2023-11-22
  12. */
  13. @Mapper
  14. public interface InsFeeAuditMapper extends BaseMapper<InsFeeAudit> {
  15. }