ModifyServiceI.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.lzt.leave.service;
  2. import java.text.ParseException;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. public interface ModifyServiceI extends CommonService{
  5. /**
  6. * 人事申请修改在职状态和所属部门离职
  7. * @throws ParseException
  8. */
  9. public void modifyUpdateLeave() throws ParseException;
  10. /**
  11. * 人事申请修改在职状态和所属部门转正
  12. * @throws ParseException
  13. */
  14. public void modifyUpdateCorr() throws ParseException;
  15. /**
  16. * 人事申请修改在职状态和所属部门平调调动
  17. * @throws ParseException
  18. */
  19. public void modifySameleveltransfer() throws ParseException;
  20. /**
  21. * 人事申请修改在职状态和所属部门升职调动
  22. * @throws ParseException
  23. */
  24. public void modifyPromotiontransfer() throws ParseException;
  25. /**
  26. * 人事申请修改在职状态和所属部门降职调动
  27. * @throws ParseException
  28. */
  29. public void modifyDemotetransfer() throws ParseException;
  30. /**
  31. * 通过组织机构查询项目名称
  32. * @param orgid
  33. * @return
  34. */
  35. public String getBybelongId(String orgid);
  36. public String getByorgId(String orgid);
  37. }