修改After的返回值,添加返回信息给前端
parent
815388e8e0
commit
44782a38a7
|
@ -7,7 +7,6 @@ import com.weaverboot.frame.ioc.anno.classAnno.WeaIocReplaceComponent;
|
|||
import com.weaverboot.frame.ioc.anno.methodAnno.WeaReplaceAfter;
|
||||
import com.weaverboot.frame.ioc.anno.methodAnno.WeaReplaceBefore;
|
||||
import com.weaverboot.frame.ioc.handler.replace.weaReplaceParam.impl.WeaAfterReplaceParam;
|
||||
import com.weaverboot.frame.ioc.handler.replace.weaReplaceParam.impl.WeaBeforeReplaceParam;
|
||||
import org.h2.util.StringUtils;
|
||||
import weaver.conn.RecordSet;
|
||||
|
||||
|
@ -32,8 +31,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceBefore(value = "/api/hrm/finance/save", order = 1, description = "工资福利修改")
|
||||
public void financeAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String financeAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "id", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
/*@WeaReplaceBefore(value = "/api/hrm/systeminfo/save", order = 1, description = "系统信息修改")
|
||||
|
@ -42,8 +47,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/systeminfo/save", order = 1, description = "系统信息修改")
|
||||
public void systeminfoAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String systeminfoAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "id", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
/* @WeaReplaceBefore(value = "/api/hrm/resource/editResource", order = 1, description = "人员信息修改")
|
||||
|
@ -53,8 +64,14 @@ public class ChangeStatusImpl {
|
|||
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/resource/editResource", order = 1, description = "人员信息修改")
|
||||
public void editResourceAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String editResourceAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "id", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
/* @WeaReplaceBefore(value = "/api/hrm/forgotPassword/saveResetPassword", order = 1, description = "重置密码")
|
||||
|
@ -63,8 +80,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/forgotPassword/saveResetPassword", order = 1, description = "重置密码")
|
||||
public void saveResetPasswordAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveResetPasswordAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "id", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -78,8 +101,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/resource/saveBatch", order = 1, description = "批量修改人员数据")
|
||||
public void saveBatchAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.batchChangeHrmResourceStatusAfter(weaAfterReplaceParam, "id", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -91,8 +120,14 @@ public class ChangeStatusImpl {
|
|||
*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchManagerid", order = 1, description = "批量修改直接上级")
|
||||
public void saveBatchManageridAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchManageridAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "ids", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -104,8 +139,14 @@ public class ChangeStatusImpl {
|
|||
*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchJobtitle", order = 1, description = "批量调整职位")
|
||||
public void saveBatchJobtitleAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchJobtitleAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "ids", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -116,8 +157,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchResourceDeptid", order = 1, description = "批量调整部门")
|
||||
public void saveBatchResourceDeptidAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchResourceDeptidAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "ids", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -127,8 +174,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchAccounttype", order = 1, description = "批量修改主次账号")
|
||||
public void saveBatchAccounttypeAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchAccounttypeAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "ids", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -142,8 +195,14 @@ public class ChangeStatusImpl {
|
|||
*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchPassword", order = 1, description = "批量修改密码")
|
||||
public void saveBatchPasswordAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchPasswordAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "ids", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -153,8 +212,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchDefaultPwd", order = 1, description = "批量重置密码")
|
||||
public void saveBatchDefaultPwdAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveBatchDefaultPwdAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "resourceIds", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -164,8 +229,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/statechange/saveHrmRedeploy", order = 1, description = "人员调动")
|
||||
public void saveHrmRedeployAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveHrmRedeployAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "tempresourceid", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -176,8 +247,14 @@ public class ChangeStatusImpl {
|
|||
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/statechange/saveHrmExtend", order = 1, description = "人员续签")
|
||||
public void saveHrmExtendAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveHrmExtendAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "tempresourceid", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -187,8 +264,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/statechange/saveHrmHire", order = 1, description = "人员转正")
|
||||
public void saveHrmHireAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveHrmHireAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusByIdsAfter(weaAfterReplaceParam, "tempresourceid", 2);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
/* @WeaReplaceBefore(value = "/api/hrm/batchMaintenanceAdjustEdit/saveBatchUnlockStatus", order = 1, description = "批量解锁人员")
|
||||
|
@ -213,8 +296,14 @@ public class ChangeStatusImpl {
|
|||
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/statechange/saveHrmReHire", order = 1, description = "人员返聘")
|
||||
public void saveHrmReHireAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveHrmReHireAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "tempresourceid", 1);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/resource/add/save", order = 1, description = "人员添加")
|
||||
|
@ -266,8 +355,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/statechange/saveHrmDismiss", order = 1, description = "人员离职")
|
||||
public void saveHrmDismissAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveHrmDismissAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "tempresourceid", 3);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
@ -278,8 +373,14 @@ public class ChangeStatusImpl {
|
|||
}*/
|
||||
|
||||
@WeaReplaceAfter(value = "/api/hrm/statechange/saveHrmFire", order = 1, description = "人员解聘")
|
||||
public void saveHrmFireAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
public String saveHrmFireAfter(WeaAfterReplaceParam weaAfterReplaceParam) {
|
||||
try {
|
||||
ChangeStatusUtil.changeHrmResourceStatusAfter(weaAfterReplaceParam, "tempresourceid", 3);
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return weaAfterReplaceParam.getData();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue