using com.hnshituo.core.webapp.vo; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class PbModelDbService { public RESTfulResult executeSqlDataWf(string sql) { DbHelper db = new DbHelper(); RESTfulResult rm = db.doOption("combaseinfos", "executeSqlDataWf", new object[] { sql }, 1); return rm; } } }