You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
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<string> BSNO, string strJson)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var result = new DBResult(false, "没有找到接口");
|
|
|
|
|
|
|
|
|
|
if (InterfaceName == "wmsfee_1")
|
|
|
|
|
{
|
|
|
|
|
return HSZQY.StockFee(BSNO, strJson);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|