示例#1
0
        public GetCodeDescriptionRs CallGetCodeDescription(GetCodeDescriptionRq request)
        {
            string serviceUrl = ServiceURL.ipServer + ServiceURL.getCodeDescriptionUrl;
            String resJSON    = CallServices.callPost(serviceUrl, request);

            return(JObject.Parse(resJSON).ToObject <GetCodeDescriptionRs>());
        }
示例#2
0
        public GetCodeDescriptionRq getGetCodeDescriptionRq(String groups, String functions, String code)
        {
            GetCodeDescriptionRq ret = new GetCodeDescriptionRq();

            ret.groups    = groups;
            ret.functions = functions;
            ret.code      = code;
            return(ret);
        }
示例#3
0
        public GetCodeDescriptionRs CallGetCodeDescription()
        {
            string serviceUrl = ServiceURL.ipServer + ServiceURL.getCodeDescriptionUrl;

            GetCodeDescriptionRq postData = new GetCodeDescriptionRq();

            String resJSON = CallServices.callPost(serviceUrl, postData);

            return(JObject.Parse(resJSON).ToObject <GetCodeDescriptionRs>());
        }