解决组织机构更新接口的bug

This commit is contained in:
jishenghua 2024-03-05 15:47:40 +08:00
parent dc8cab7736
commit 9705e786d4

View File

@ -83,6 +83,7 @@ public class OrganizationService {
public int updateOrganization(JSONObject obj, HttpServletRequest request)throws Exception {
Organization organization = JSONObject.parseObject(obj.toJSONString(), Organization.class);
organization.setUpdateTime(new Date());
organization.setDeleteFlag("0");
int result=0;
try{
result=organizationMapperEx.editOrganization(organization);