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