Files
klp-oa/klp-aps/src/main/java/com/klp/aps/mapper/ApsOperationMapper.java
2026-03-08 16:02:44 +08:00

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);
}