ZyjnService.java 438 B

123456789101112131415
  1. package com.malk.pro.zyjn.service;
  2. import com.malk.server.common.McR;
  3. import org.springframework.scheduling.annotation.Async;
  4. import javax.servlet.http.HttpServletResponse;
  5. public interface ZyjnService {
  6. McR getDeptAttendanceSheet(String userId, String userName, String deptId, Long date,String deptName);
  7. void download(String fileName, HttpServletResponse response);
  8. void updateDeptAttendanceSheet(String formInstId);
  9. }