1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.java110.common.bmo.attendanceLog; import com.java110.dto.attendance.AttendanceLogDto; import org.springframework.http.ResponseEntity; public interface IGetAttendanceLogBMO { /** * 查询考勤日志 * add by wuxw * @param attendanceLogDto * @return */ ResponseEntity<String> get(AttendanceLogDto attendanceLogDto); }