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

This commit is contained in:
jishenghua
2024-03-05 15:59:00 +08:00
parent 9705e786d4
commit 6318fe78a4
3 changed files with 2 additions and 3 deletions

View File

@@ -83,7 +83,6 @@ 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);