package com.dy.pmsGlobal.daoSta; import com.dy.pmsGlobal.pojoSta.StaRepairInfo; import org.apache.ibatis.annotations.Mapper; /** * @author User * @description 针对表【sta_repair_info】的数据库操作Mapper * @createDate 2024-06-19 14:21:17 * @Entity com.dy.pmsGlobal.pojoSta.StaRepairInfo */ @Mapper public interface StaRepairInfoMapper { int deleteByPrimaryKey(Long id); int insert(StaRepairInfo record); int insertSelective(StaRepairInfo record); StaRepairInfo selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(StaRepairInfo record); int updateByPrimaryKey(StaRepairInfo record); }