using HH.WMS.Entitys.Basic; /******************************************************************************** ** auth: DBS ** date: 2018/12/11 10:33:38 ** desc: 尚未编写描述 ** Ver.: V1.0.0 *********************************************************************************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.DAL.Basic { public class TN_WM_PRINT_TEMPLETDAL : DapperBaseDAL { public List GetAllowOperationList(string mac) { string sql = "select * from TN_WM_PRINT_TEMPLET where CN_S_MAC=@CN_S_MAC or (CN_C_IS_UPLOADED='Y' and CN_C_IS_FIRST='Y')"; return ExecuteQuery(sql, new { CN_S_MAC = mac }); //return ExecutePagingResult(sql, pageIndex, pageSize, "", ""); } } }