| package com.dy.pmsGlobal.daoSta; | 
|   | 
| import com.dy.pmsGlobal.pojoSta.StaAssemblyWorkHistory; | 
| import org.apache.ibatis.annotations.Mapper; | 
|   | 
| /** | 
| * @author User | 
| * @description 针对表【sta_assembly_work_history(生产线生产任务认领表)】的数据库操作Mapper | 
| * @createDate 2024-06-20 11:31:20 | 
| * @Entity com.dy.pmsGlobal.pojoSta.StaAssemblyWorkHistory | 
| */ | 
| @Mapper | 
| public interface StaAssemblyWorkHistoryMapper { | 
|   | 
|     int deleteByPrimaryKey(Long id); | 
|   | 
|     int insert(StaAssemblyWorkHistory record); | 
|   | 
|     int insertSelective(StaAssemblyWorkHistory record); | 
|   | 
|     StaAssemblyWorkHistory selectByPrimaryKey(Long id); | 
|   | 
|     int updateByPrimaryKeySelective(StaAssemblyWorkHistory record); | 
|   | 
|     int updateByPrimaryKey(StaAssemblyWorkHistory record); | 
|   | 
| } |