|
@@ -11,6 +11,7 @@ import com.huaxu.util.ByteArrayUtils;
|
|
import com.huaxu.util.RedisUtil;
|
|
import com.huaxu.util.RedisUtil;
|
|
import com.huaxu.util.UserUtil;
|
|
import com.huaxu.util.UserUtil;
|
|
import io.swagger.models.auth.In;
|
|
import io.swagger.models.auth.In;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
@@ -326,5 +327,8 @@ public class OrgServiceImpl implements OrgService {
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ public String findParentOrgByChildId(Integer childId)
|
|
|
|
+ {
|
|
|
|
+ return orgMapper.findParentOrgByChildId(childId);
|
|
|
|
+ }
|
|
}
|
|
}
|