using HH.WMS.Entitys;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.DAL.Basic
{
public class TN_WM_LOGISTICS_TEMPLET_RELDAL : DapperBaseDAL
{
#region 删除
///
/// 删除
///
///
///
///
public OperateResult Delete(string sqlwhere, IDbTransaction trans)
{
string sql = "Delete TN_WM_LOGISTICS_TEMPLET_REL {0}";
sql = string.Format(sql, sqlwhere);
return ExecuteTranSql(sql, null, trans);
}
#endregion
}
}