Exemplo n.º 1
0
 public Boolean addRow(string content, string content_en, int logicid)
 {
     try
     {
         ICustomsCMS   server        = XmlRpcInstance.getInstance();
         ReportContent reportContent = new ReportContent();
         reportContent.content       = content;
         reportContent.logicid       = logicid;
         reportContent.content_en    = content_en;
         reportContent.operatePeople = SystemManageService.currentUser.UserName;
         DBRPCResponse dBRPCResponse = server.addReportContent(reportContent);
         return(true);
     }
     catch (Exception ex)
     {
         throw new Exception("错误:" + ex.Message);
     }
 }