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