| 12345678910111213141516171819 |
- package com.ydtech.modules.order.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ydtech.modules.order.entity.po.PinganShUploafile;
- /**
- * @author Administrator
- * @description 针对表【pingan_sh_uploafile(平安事后文件上传资料)】的数据库操作Mapper
- * @createDate 2024-08-16 18:22:00
- * @Entity generator.domain.PinganShUploafile
- */
- public interface PinganShUploafileMapper extends BaseMapper<PinganShUploafile> {
- }
|