1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ycl.mapper.message;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ycl.entity.message.SmsAudit;
|
| /**
| * <p>
| * 短信审核 Mapper 接口
| * </p>
| *
| * @author mg
| * @since 2022-10-17
| */
| public interface SmsAuditMapper extends BaseMapper<SmsAudit> {
| }
|
|