1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.sinata.rest.modular.mall.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.sinata.rest.modular.mall.model.Notice;
| import org.apache.ibatis.annotations.Param;
|
| /**
| * <p>
| * 公告信息 Mapper 接口
| * </p>
| *
| * @author goku
| * @since 2023-03-21
| */
| public interface NoticeMapper extends BaseMapper<Notice> {
|
| void addMerchantNotice(@Param("merchantId") Integer merchantId,@Param("type") Integer type
| ,@Param("content") String content);
|
| }
|
|