Files
T-DAS/Epost.DAL/WmsTaskDAL.cs
2023-01-13 15:30:20 +08:00

43 lines
953 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Epost.Common;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.OracleClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Epost.Common.LogHelper;
namespace Epost.DAL
{
public class WmsTaskDAL
{
DB_Oracle DB_Oracle = new DB_Oracle();
DataBaseOpration.OprationOraDAL db;
public WmsTaskDAL()
{
db = DB_Oracle.GetInstance();
}
#region
public DataTable SkuList()
{
try
{
string sql = string.Format("select * from tdas_sortplu");
return db.GetsqlForDT(sql);
}
catch (Exception ex)
{
LogHelper.WriteLogInfo("查询WMSSKU列表异常" + ex.Message);
return null;
}
}
#endregion
}
}