using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UfidaToTempDb { /// /// 其他入库单 /// public class TransRdrecord08 : BaseTrans { protected override string _BuildSql(Hashtable args) { string sql = "exec usp_transrdrecord08 '{0}','{1}'"; return string.Format(sql,args["Start"],args["End"]); } } }