1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.tievd.jyz.mapper;
|
| import com.tievd.jyz.entity.OilPosition;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.Date;
|
| /**
| * OilPosition
| * @author cube
| * @since 2023-02-27
| * @version V2.0.0
| */
| public interface OilPositionMapper extends BaseMapper<OilPosition> {
|
| /**
| * 获取设备上终端的最大的修改/创建时间
| * @param orgCode
| * @return
| */
| Date findMaxChangeTime(@Param("orgCode") String orgCode);
| }
|
|