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
13 lines
376 B
Java
10 months ago
|
package com.engine.attendance.attendanceanalysis.cmd.getclockInpoint.biz;
|
||
10 months ago
|
|
||
|
|
||
|
import com.engine.attendance.attendanceanalysis.dto.clockpoint.ClockPointDTO;
|
||
|
import com.engine.attendance.attendanceanalysis.dto.clockpoint.ClockPointInfo;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
10 months ago
|
public interface AdjustClockPointActionInterface {
|
||
|
|
||
10 months ago
|
List<ClockPointDTO> execute(ClockPointInfo clockPointInfo);
|
||
|
}
|