using System; using HcUtility.Comm; using System.IO; using System.Collections.Generic; namespace DSWeb.Interface { public static class HeadClass { public static DBResult GetInterface(string InterfaceName, StreamReader sr) { var result = new DBResult(false,"没有找到接口"); return result; } public static DBResult PostInterface(string InterfaceName,List BSNO, string strJson) { var result = new DBResult(false, "没有找到接口"); if (InterfaceName == "wmsfee_1") { return HSZQY.StockFee(BSNO, strJson); } return result; } } }