| | |
| | | import com.dy.pmsGlobal.pojoSta.StaAssemblyWorkLast; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author User |
| | | * @description 针对表【sta_assembly_work_last(生产线生产任务认领表)】的数据库操作Mapper |
| | | * @createDate 2024-06-19 14:21:17 |
| | | * @createDate 2024-06-20 11:31:20 |
| | | * @Entity com.dy.pmsGlobal.pojoSta.StaAssemblyWorkLast |
| | | */ |
| | | @Mapper |
| | |
| | | |
| | | int insert(StaAssemblyWorkLast record); |
| | | |
| | | // @Options(useGeneratedKeys = true, keyProperty = "id") |
| | | int insertSelective(StaAssemblyWorkLast record); |
| | | |
| | | StaAssemblyWorkLast selectByPrimaryKey(Long id); |
| | |
| | | |
| | | int updateByPrimaryKey(StaAssemblyWorkLast record); |
| | | |
| | | List<StaAssemblyWorkLast> selectList(StaAssemblyWorkLast record); |
| | | |
| | | Long selectSomeCount(Map<String, Object> params); |
| | | |
| | | List<StaAssemblyWorkLast> selectSome(Map<String, Object> params); |
| | | |
| | | StaAssemblyWorkLast existsEntity(StaAssemblyWorkLast record); |
| | | } |