public BaseResponse <GetOrganDetailInfoResult> GetOrganDetailInfo(GetOrganDetailInfoParameter parameter)
 {
     if (Validate(parameter))
     {
         return(organManager.GetOrganDetailInfo(parameter));
     }
     else
     {
         BaseResponse <GetOrganDetailInfoResult> response = new BaseResponse <GetOrganDetailInfoResult>();
         response.IsSuccessful = false;
         response.Reason       = "JWT_ERR";
         return(response);
     }
 }
示例#2
0
 public BaseResponse <GetOrganDetailInfoResult> GetOrganDetailInfo(GetOrganDetailInfoParameter parameter)
 {
     return(organManager.GetOrganDetailInfo(parameter));
 }