package cn.com.lzt.leave.service; import java.text.ParseException; import org.jeecgframework.core.common.service.CommonService; public interface ModifyServiceI extends CommonService{ /** * 人事申请修改在职状态和所属部门离职 * @throws ParseException */ public void modifyUpdateLeave() throws ParseException; /** * 人事申请修改在职状态和所属部门转正 * @throws ParseException */ public void modifyUpdateCorr() throws ParseException; /** * 人事申请修改在职状态和所属部门平调调动 * @throws ParseException */ public void modifySameleveltransfer() throws ParseException; /** * 人事申请修改在职状态和所属部门升职调动 * @throws ParseException */ public void modifyPromotiontransfer() throws ParseException; /** * 人事申请修改在职状态和所属部门降职调动 * @throws ParseException */ public void modifyDemotetransfer() throws ParseException; /** * 通过组织机构查询项目名称 * @param orgid * @return */ public String getBybelongId(String orgid); public String getByorgId(String orgid); }