zhubaomin
2025-04-15 70b2c7a1f5b54cf9157d8fce4d6a9b0f2fadaebe
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
30
31
32
33
34
35
36
package com.dy.pipIrrGlobal.daoIr;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoIr.IrPlanOperate;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.Date;
 
/**
 * @author ZhuBaoMin
 * @date 2025-02-21 11:11
 * @LastEditTime 2025-02-21 11:11
 * @Description
 */
 
@Mapper
public interface IrPlanOperateMapper extends BaseMapper<IrPlanOperate> {
    int deleteByPrimaryKey(Long id);
 
    int insert(IrPlanOperate record);
 
    int insertSelective(IrPlanOperate record);
 
    IrPlanOperate selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(IrPlanOperate record);
 
    int updateByPrimaryKey(IrPlanOperate record);
 
    /**
     * 根据计划ID获取终止时间
     * @param planId
     * @return
     */
    Date getTerminateTime(Long planId);
}