liurunyu
2024-02-27 4342b12d28b15e61bbed4d4d5e64a6a2bacae952
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmIntakeAmountHistoryMapper.java
File was renamed from pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmIntakeAmountMapper.java
@@ -1,6 +1,6 @@
package com.dy.pipIrrGlobal.daoRm;
import com.dy.pipIrrGlobal.pojoRm.RmIntakeAmount;
import com.dy.pipIrrGlobal.pojoRm.RmIntakeAmountHistory;
import org.apache.ibatis.annotations.Mapper;
/**
@@ -10,7 +10,7 @@
 * @Description
 */   
@Mapper
public interface RmIntakeAmountMapper {
public interface RmIntakeAmountHistoryMapper {
    /**
     * delete by primary key
     * @param id primaryKey
@@ -23,33 +23,33 @@
     * @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);
}