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