| 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); | 
| } |