You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
376 B
Java

package com.engine.attendance.attendanceanalysis.cmd.getclockInpoint.biz;
import com.engine.attendance.attendanceanalysis.dto.clockpoint.ClockPointDTO;
import com.engine.attendance.attendanceanalysis.dto.clockpoint.ClockPointInfo;
import java.util.List;
public interface AdjustClockPointActionInterface {
List<ClockPointDTO> execute(ClockPointInfo clockPointInfo);
}