1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.fzzy.igds.mapper;
|
| import com.fzzy.igds.data.NoticeParam;
| import org.apache.ibatis.annotations.Param;
|
| /**
| * @Description
| * @Author CZT
| * @Date 2025/11/29 16:39
| */
| public interface InoutNoticeMapper {
|
| /**
| * 入库通知单 - 根据参数重新计算完成量
| *
| * @param param
| * @return
| */
| int reSumNoticeInComplete(@Param("param") NoticeParam param);
|
| /**
| * 出库通知单 - 根据参数重新计算完成量
| *
| * @param param
| * @return
| */
| int reSumNoticeOutComplete(@Param("param") NoticeParam param);
|
| }
|
|