File was renamed from pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmIntakeAmountMapper.java |
| | |
| | | package com.dy.pipIrrGlobal.daoRm; |
| | | |
| | | import com.dy.pipIrrGlobal.pojoRm.RmIntakeAmount; |
| | | import com.dy.pipIrrGlobal.pojoRm.RmIntakeAmountHistory; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | |
| | | * @Description |
| | | */ |
| | | @Mapper |
| | | public interface RmIntakeAmountMapper { |
| | | public interface RmIntakeAmountHistoryMapper { |
| | | /** |
| | | * delete by primary key |
| | | * @param id primaryKey |
| | |
| | | * @param record the record |
| | | * @return insert count |
| | | */ |
| | | int insert(RmIntakeAmount record); |
| | | int insert(RmIntakeAmountHistory record); |
| | | |
| | | /** |
| | | * insert record to table selective |
| | | * @param record the record |
| | | * @return insert count |
| | | */ |
| | | int insertSelective(RmIntakeAmount record); |
| | | int insertSelective(RmIntakeAmountHistory record); |
| | | |
| | | /** |
| | | * select by primary key |
| | | * @param id primary key |
| | | * @return object by primary key |
| | | */ |
| | | RmIntakeAmount selectByPrimaryKey(Long id); |
| | | RmIntakeAmountHistory selectByPrimaryKey(Long id); |
| | | |
| | | /** |
| | | * update record selective |
| | | * @param record the updated record |
| | | * @return update count |
| | | */ |
| | | int updateByPrimaryKeySelective(RmIntakeAmount record); |
| | | int updateByPrimaryKeySelective(RmIntakeAmountHistory record); |
| | | |
| | | /** |
| | | * update record |
| | | * @param record the updated record |
| | | * @return update count |
| | | */ |
| | | int updateByPrimaryKey(RmIntakeAmount record); |
| | | int updateByPrimaryKey(RmIntakeAmountHistory record); |
| | | } |