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
| package org.jeecg.modules.mes.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.jeecg.modules.mes.entity.MesProductionOrder;
|
| import java.util.Date;
|
| /**
| * @Description: SAP生产订单
| * @Author: jeecg-boot
| * @Date: 2025-07-04
| * @Version: V1.0
| */
| public interface MesProductionOrderMapper extends BaseMapper<MesProductionOrder> {
|
| /**
| * 获取最新的创建同步日期
| * @return
| */
| String getLastSyncCreateDate();
|
| /**
| * 获取最新的创建同步日期
| * @return
| */
| String getLastSyncUpdateDate();
| }
|
|