using System; using System.Collections.Generic; using System.Text; using System.Data; using Gm_WMS.DataAccess.DataService; using Stone.Common; namespace Stone.DataService.Biz.Info { public class F_VerifyBill { public static DataSet GetBarCodeByVDA(Command cmd) { string VDA = cmd.Pars[0]; string sql = "select BarCode from t_VerifyBill where 1= 1 " + " and PackageNo1 = '" + VDA + "'" + " or PackageNo2 = '" + VDA + "'" + " order by Id desc"; LocalDBService db = new LocalDBService(); return db.Exec_DataSet(sql); } } }