16 lines
440 B
Java
16 lines
440 B
Java
package com.klp.aps.mapper;
|
|
|
|
import com.klp.aps.domain.entity.ApsScheduleChangeLogEntity;
|
|
import com.klp.aps.domain.entity.ApsScheduleOperationEntity;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface ApsOperationMapper {
|
|
|
|
ApsScheduleOperationEntity selectByIdForUpdate(@Param("operationId") Long operationId);
|
|
|
|
int updateSlot(ApsScheduleOperationEntity op);
|
|
|
|
int insertChangeLog(ApsScheduleChangeLogEntity log);
|
|
}
|
|
|