wuzeyu
2024-08-28 d65cc4cd967d9c8cbdc8a4dd7c803e952f01098f
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
package com.dy.pipIrrGlobal.daoOp;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoOp.OpeWorkOrder;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author :WuZeYu
 * @Date :2024/8/6  8:47
 * @LastEditTime :2024/8/6  8:47
 * @Description
 */
@Mapper
public interface OpeWorkOrderMapper extends BaseMapper<OpeWorkOrder> {
    int deleteByPrimaryKey(Long id);
 
    int insert(OpeWorkOrder record);
 
    int insertSelective(OpeWorkOrder record);
 
    OpeWorkOrder selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(OpeWorkOrder record);
 
    int updateByPrimaryKey(OpeWorkOrder record);
}