温控系统-DAL数据层(2)BaseDAL和ProductDAL功能代码

BaseDAL是数据层中非常重要的基类,业务DAL使用到其中一些共用方法;

ProductDAL.cs结构如下参考:

using Common;
using STMS.DbUtility;
using STMS.Models.DModels;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace STMS.DAL
{public class ProductDAL:BaseDAL<ProductInfo>{/// <summary>/// 查询产品列表/// </summary>/// <param name="keywords"></param>/// <param name="isDeleted"></param>/// <returns></returns>public List<ProductInfo> GetProductList(string keywords,int isDeleted){string cols = CreateSql.GetColsString<ProductInfo>("IsDeleted");string strWhere = $"IsDeleted={isDeleted}";SqlParameter para = null;if(!string.IsNullOrEmpty(keywords)){strWhere += " and (ProductName like @keywords or ProductNo like @keywords)";para = new SqlParameter("@keywords", $"%{keywords}%");return GetModelList(strWhere, cols, para);}return GetModelList(strWhere, cols);}/// <summary>/// 获取指定的产品信息/// </summary>/// <param name="productId"></param>/// <returns></returns>public ProductInfo GetProductInfo(int productId){string cols= CreateSql.GetColsString<ProductInfo>("IsDeleted");return GetById(productId, cols);}/// <summary>/// 获取所有产品列表  绑定下拉框/// </summary>/// <returns></returns>public List<ProductInfo> GetAllProducts(){return  GetModelList("ProductId,ProductName", 0);}/// <summary>/// 获取指定产品的库存数/// </summary>/// <param name="productId"></param>/// <returns></returns>public int GetProductCount(int productId){string sql = "select sum(ProductCount) from ProductStoreInfos where ProductId=" + productId;object oCount= SqlHelper.ExecuteScalar(sql, 1);if (oCount != null && oCount.ToString() != "")return oCount.GetInt();return 0;}/// <summary>/// 检查编码或名称是否已存在/// </summary>/// <param name="proName"></param>/// <param name="proNo"></param>/// <returns></returns>public bool[] ExistsProduct(string proName, string proNo){bool blName = false;if (!string.IsNullOrEmpty(proName))blName = ExistsByName("ProductName", proName);bool blNo = false;if (!string.IsNullOrEmpty(proNo))blNo = ExistsByName("ProductNo", proNo);return new bool[] { blName, blNo };}/// <summary>/// 添加产品信息/// </summary>/// <param name="proInfo"></param>/// <param name="isGetId"></param>/// <returns></returns>public int AddProductInfo(ProductInfo proInfo,int isGetId){string cols = CreateSql.GetColsString<ProductInfo>("ProductId,IsDeleted");return Add(proInfo, cols, isGetId);}/// <summary>/// 修改产品信息/// </summary>/// <param name="proInfo"></param>/// <returns></returns>public bool UpdateProductInfo(ProductInfo proInfo){string cols = CreateSql.GetColsString<ProductInfo>("IsDeleted");return Update(proInfo, cols);}}
}

BaseDAL.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SqlClient;
using Common;
using System.Data.SqlTypes;
using STMS.DbUtility;namespace STMS.DAL
{public class BaseDAL<T> : BQuery<T> where T : class{#region 添加/// <summary>/// 添加实体信息/// </summary>/// <param name="t"></param>/// <param name="strCols">插入列名字符串,若为空,则全插入</param>/// <returns></returns>public int Add(T t, string strCols, int isReturn){if (t == null)return 0;//获取生成的sql和参数列表  sql   Paras 参数数组 SqlParameter[] SqlModel insert = CreateSql.GetInsertSqlAndParas<T>(t, strCols, isReturn);//执行sql命令if (isReturn == 0)  //受影响  1  失败  0return SqlHelper.ExecuteNonQuery(insert.Sql, 1, insert.SqlParaArray);else{//sql   insert  select @@identity  主键值object oId = SqlHelper.ExecuteScalar(insert.Sql, 1, insert.SqlParaArray);if (oId != null && oId.ToString() != "")return oId.GetInt();elsereturn 0;}}/// <summary>/// 批量插入/// </summary>/// <param name="list"></param>/// <param name="strCols"></param>/// <returns></returns>public bool AddList(List<T> list, string strCols){if (list == null || list.Count == 0)return false;List<CommandInfo> comList = new List<CommandInfo>();foreach (T t in list){SqlModel insert = CreateSql.GetInsertSqlAndParas<T>(t, strCols, 0);//sql parasCommandInfo com = new CommandInfo(insert.Sql, false, insert.SqlParaArray);comList.Add(com);}return SqlHelper.ExecuteTrans(comList);}#endregion#region 修改/// <summary>/// 修改实体  以主键为条件定位/// </summary>/// <param name="t"></param>/// <param name="strCols">也包括Id列</param>/// <returns></returns>public bool Update(T t, string strCols){if (t == null)return false;elsereturn Update(t, strCols, "");}/// <summary>/// 修改信息实体/// </summary>/// <param name="t"></param>/// <param name="strCols">要修改的列  标识列名</param>/// <param name="strWhere">另外附加条件 </param>/// <returns></returns>public bool Update(T t, string strCols, string strWhere, params SqlParameter[] paras){if (t == null)return false;//获取生成的sql和参数列表SqlModel update = CreateSql.GetUpdateSqlAndParas<T>(t, strCols, strWhere);List<SqlParameter> listParas = update.SqlParaArray.ToList();if (paras != null && paras.Length > 0)listParas.AddRange(paras);//执行sql命令return SqlHelper.ExecuteNonQuery(update.Sql, 1, listParas.ToArray()) > 0;}/// <summary>/// 批量修改/// </summary>/// <param name="list"></param>/// <param name="strCols"></param>/// <returns></returns>public bool UpdateList(List<T> list, string strCols){if (list == null || list.Count == 0)return false;List<CommandInfo> comList = new List<CommandInfo>();foreach (T t in list){SqlModel update = CreateSql.GetUpdateSqlAndParas<T>(t, strCols, "");CommandInfo com = new CommandInfo(update.Sql, false, update.SqlParaArray);comList.Add(com);}return SqlHelper.ExecuteTrans(comList);}#endregion#region 删除/// <summary>/// 根据Id删除  这里id是主键 delType=1 真删除  0 假删除/// </summary>/// <param name="id"></param>/// <returns></returns>public bool Delete(int id, int delType, int isDeleted){Type type = typeof(T);string strWhere = $"[{type.GetPrimary()}]=@Id";SqlParameter[] paras ={new SqlParameter("@Id",id)};return Delete(delType, strWhere, isDeleted, paras);}/// <summary>/// 按条件删除数据(假删除,包含可以恢复)  真删除  ---Delete /// </summary>///  <param name="actType">删除类型 0 假  1 真</param>/// <param name="strWhere">条件</param>/// <param name="isDeleted">删除标识值  0 1  2</param>///  <param name="paras">参数列表</param>/// <returns></returns>public bool Delete(int actType, string strWhere, int isDeleted, SqlParameter[] paras){Type type = typeof(T);string delSql = "";//删除语句的生成if (actType == 1)delSql = CreateSql.CreateDeleteSql<T>(strWhere);elsedelSql = CreateSql.CreateLogicDeleteSql<T>(strWhere, isDeleted);List<CommandInfo> list = new List<CommandInfo>();//可能会批量的删除或修改  ----启用事务   ---一致性提交list.Add(new CommandInfo(){CommandText = delSql,IsProc = false,Paras = paras});return SqlHelper.ExecuteTrans(list);}/// <summary>/// 批量删除/// </summary>/// <param name="idList"></param>/// <returns></returns>public bool DeleteList(List<int> idList, int actType, int isDeleted){Type type = typeof(T);List<CommandInfo> comList = new List<CommandInfo>();foreach (int id in idList){string strWhere = $"[{type.GetPrimary()}]=@Id";string delSql = "";if (actType == 1)delSql = CreateSql.CreateDeleteSql<T>(strWhere);elsedelSql = CreateSql.CreateLogicDeleteSql<T>(strWhere, isDeleted);SqlParameter[] paras ={new SqlParameter("@Id",id)};CommandInfo com = new CommandInfo(delSql, false, paras);comList.Add(com);}return SqlHelper.ExecuteTrans(comList);}#endregion}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/36218.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

3D模型优化10个最佳实践

对于许多在建模、渲染和动画方面经验丰富的 3D 建模者来说&#xff0c;3D 优化可能是一个令人畏惧的过程 - 特别是当你正在优化实时应用程序的 3D 模型时&#xff01; 在 Google 上快速搜索“如何优化 3D 文件”将会出现一些建议&#xff0c;例如减少多边形数和消除多余的顶点。…

为什么叫云计算?云计算的优势有哪些

说起云计算大家并不会感到陌生&#xff0c;那么为什么叫云计算&#xff1f;云计算技术的引入通常会使企业的信息技术应用更高效、更可靠、更安全。云计算支持用户在任意位置、使用各种终端获取应用服务。使用了数据多副本容错、计算节点同构可互换等措施来保障服务的高可靠性&a…

等保测评中的问题与建议

随着信息技术的广泛使用和飞速发展&#xff0c;网络安全已逐渐演变为威胁经济社会发展的关键议题。信息安全的范围涵盖了政治、商务、军事、教育等多个方面。其中&#xff0c;信息的存储、分享以及管理&#xff0c;主要取决于政府的宏观规划和决策、商业运作的信息、银行的财务…

不可复制网站上的文字——2种方法

禁用javascript或Console控制台代码 &#xff08;1&#xff09;F12键——设置——勾选禁用javascript &#xff08;2&#xff09;Console控制台敲如下代码&#xff1a; var allowPaste function(e){ e.stopImmediatePropagation(); return true; }; document.addEventListe…

构建 Audio Unit 应用程序

构建 Audio Unit 应用程序 构建 Audio Unit 应用程序从选择设计模式开始I/O Pass ThroughI/O Without a Render Callback FunctionI/O with a Render Callback FunctionOutput-Only with a Render Callback Function其他设计模式 构建应用程序配置 audio session指定 audio uni…

金融行业自动化运维的研究与实践

金融行业自动化运维的研究与实践 在金融行业中&#xff0c;信息技术&#xff08;IT&#xff09;运维已经成为保障业务连续性和稳定性的重要环节。随着金融业务的复杂化和信息系统的多样化&#xff0c;传统的手工运维模式已无法满足高效、安全的需求。自动化运维技术的应用变得…

流计算状态算子灵活开发指南

随着实时数据流处理需求的不断增长&#xff0c;高效、可扩展的流计算框架变得愈发重要。DolphinDB 作为一款高性能分布式时间序列数据库&#xff0c;不仅在数据存储和查询上表现出色&#xff0c;还通过引入面向对象编程&#xff08;OOP&#xff09;编程范式&#xff0c;使得开发…

聚焦 HW 行动,构筑重保邮件安全防线

随着信息技术的飞速发展&#xff0c;网络安全已成为国家安全的重要组成部分。HW行动作为国家级网络安全演练&#xff0c;通过模拟实战攻防&#xff0c;检验和提升国家关键信息基础设施的防护能力。 CACTER凭借多年HW防护经验&#xff0c;提供全面的邮件安全防护体系&#xff0…

python实现syslog接受日志数据源代码

Syslog 是一种标准的日志记录协议&#xff0c;用于传输日志消息。它通常用于集中收集不同系统和设备的日志数据。本文将展示如何使用Python编写一个Syslog服务器&#xff0c;接受并处理Syslog日志消息。 环境准备 在开始之前&#xff0c;请确保你的系统上已经安装了Python。你…

批量视频创作:PlugLink如何助力大规模视频生成(附源码)

批量视频创作&#xff1a;PlugLink如何助力大规模视频生成 传统的视频制作流程往往需要大量的人力、物力和时间投入&#xff0c;这不仅限制了内容产出的效率&#xff0c;也大大提高了成本。为了解决这一问题&#xff0c;PlugLink&#xff0c;一个开源的自动化框架&#xff0c;…

MySQL详细介绍:开源关系数据库管理系统的魅力

学习总结 1、掌握 JAVA入门到进阶知识(持续写作中……&#xff09; 2、学会Oracle数据库入门到入土用法(创作中……&#xff09; 3、手把手教你开发炫酷的vbs脚本制作(完善中……&#xff09; 4、牛逼哄哄的 IDEA编程利器技巧(编写中……&#xff09; 5、面经吐血整理的 面试技…

Flutter 小技巧之为什么推荐 Widget 使用 const

今天收到这个问题&#xff0c;本来想着简单回复下&#xff0c;但是感觉这个话题又可以稍微展开讲讲&#xff0c;干脆就整理成一篇简单的科普&#xff0c;这样也能更方便清晰地回答这个问题。 聊这个问题之前&#xff0c;我们需要把一个“老生常谈”的概念拿出来说&#xff0c;那…

题目:有一个已经排好序的数组。现输入一个数,要求按原来的规律将它插入数组中

在C语言中&#xff0c;如果你有一个已经排好序的数组&#xff0c;并且想要插入一个新的数到数组中&#xff0c;同时保持数组的有序性&#xff0c;你需要首先确定新数的插入位置&#xff0c;然后将该位置及其后面的所有元素向后移动一位&#xff0c;最后将新数插入到正确的位置。…

Open3d 点云投影到 xoy yoz 平面最简单的方式(附python 代码)

最简单的方式&#xff0c;就是直接把原有的点云的数据的 z or x 赋值为0, 然后生成一个新的点云。 filename_model1 r"1.pcd"down 10point_cloud o3d.io.read_point_cloud(filename_model1) point_cloud point_cloud.uniform_down_sample(int(down)) print(降采样…

metasfresh开源ERP系统Windows开发环境配置参考

目录 概述 开发环境 配置过程 后端启动 前端启动 登陆系统 其他 概述 Compiere闭源之后衍生出了Admpiere等若干开源的产品&#xff0c;metasfresh就是其中之一&#xff0c;metasfresh截至发稿时在GitHub上已有64000多次的修改提交&#xff0c;而且仍在维护中&#xff0…

leetcode刷MySQL记录——sum/count里加条件判断、avg求满足条件记录数占比

leetcode题目&#xff1a;1934. 确认率 在刷leetcode的MySQL题中&#xff0c;从题目的题解知道了count和avg聚合函数的另外用法&#xff0c;在此记录。 count() 里加条件判断 count函数用于统计在符合搜索条件的记录中&#xff0c;指定的表达式expr不为NULL的行数有多少&…

GIS避坑指南!工作中ArcGIS常用的40个小技巧

01图斑的边界线太粗而且无法修改 之前有群友遇到这样一个问题&#xff0c;边界线粗到连图斑都看不见&#xff1a; 查看符号系统&#xff0c;很正常&#xff1a; 究其原因&#xff0c;是地图视图比例的问题&#xff0c;正常情况下&#xff0c;地图的视图比例会随着视图范围自动调…

未来20年人工智能将如何塑造社会

照片由Brian McGowan在Unsplash上拍摄 更多资讯&#xff0c;请访问 2img.ai “人工智能会成为我们的救星还是我们的末日&#xff1f;” 几十年来&#xff0c;这个问题一直困扰着哲学家、科学家和科幻爱好者。 当我们踏上技术革命的边缘时&#xff0c;是时候透过水晶球&#x…

我国氮化硼市场规模逐渐扩大 市场集中度有望不断提升

我国氮化硼市场规模逐渐扩大 市场集中度有望不断提升 氮化硼&#xff08;BN&#xff09;俗称为白石墨&#xff0c;是由硼原子和氮原子所构成的一种晶体材料&#xff0c;在常温条件下多表现为一种棕色或暗红色晶体。氮化硼具有导热性好、硬度大、熔点高、抗化学侵蚀性等优点&…

快来看,错过了今天就要设置为vip文章了----openEuler@2024全球发展展望与战略规划

会议主题&#xff1a;openEuler2024全球发展展望与战略规划 OpenEuler2024项目在2024年成功推出了多个长期支持&#xff08;LTS&#xff09;版本&#xff0c;标志着其在智能技术领域的全新篇章&#xff0c;并致力于构建全球性的开源新生态。以下是该项目的主要内容和成就概览&a…