YD_PN.java 652 B

12345678910111213141516171819202122232425
  1. package com.malk.paineng.service;
  2. import java.io.IOException;
  3. import java.util.Map;
  4. public interface YD_PN {
  5. //根据OA数据ID 和传过来的类型,判断往宜搭写入出差数据
  6. String syncYD_PN(String processInstanceId, String type, String SSGS) throws IOException;
  7. //方法syncYD_PN() 的具体实现
  8. void syncYD_PN_impl(String processInstanceId, Map<String, String> compsId_main, Map<String, String> compsId_itinerary, String compId_sub_oa,String SSGS) throws IOException;
  9. //获取工时数据 按天
  10. void syncYD_GSSJ();
  11. void syncYD_GSSJTOMonth();
  12. void CCSJtoYD() throws IOException;
  13. }