MerchantApplyFileMapper.java 404 B

123456789101112131415161718
  1. package com.ylx.massage.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ylx.massage.domain.MerchantApplyFile;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 入驻申请附件表(MerchantApplyFile)表数据库访问层
  7. *
  8. * @author makejava
  9. * @since 2026-06-05 16:26:47
  10. */
  11. @Mapper
  12. public interface MerchantApplyFileMapper extends BaseMapper<MerchantApplyFile> {
  13. }