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 ZhuBaoMin
|
* @date 2024-11-06 11:33
|
* @LastEditTime 2024-11-06 11:33
|
* @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);
|
}
|