BLL.cmt 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. string ModelSpace = host.NameSpace+".Model."+ host.GetModelClass(host.TableName);
  6. string DALSpace= host.NameSpace+".DAL."+ host.GetDALClass(host.TableName);
  7. ColumnInfo identityKey=host.IdentityKey;
  8. string returnValue = "void";
  9. if (identityKey!=null)
  10. {
  11. returnValue = CodeCommon.DbTypeToCS(identityKey.TypeName);
  12. }
  13. #>
  14. using System;
  15. using System.Text;
  16. using System.Collections.Generic;
  17. using System.Data;
  18. using Maticsoft.Common;
  19. using Maticsoft.Model;
  20. namespace <#= host.NameSpace #>.BLL <# if( host.Folder.Length > 0){ #>.<#= host.Folder #><# } #>
  21. {
  22. <# if( host.TableDescription.Length > 0) {#>
  23. //<#= host.TableDescription #>
  24. <# } #>
  25. public partial class <#= host.GetBLLClass(host.TableName) #>
  26. {
  27. private readonly <#= DALSpace #> dal=new <#= DALSpace #>();
  28. public <#= host.GetBLLClass(host.TableName) #>()
  29. {}
  30. #region Method
  31. /// <summary>
  32. /// 是否存在该记录
  33. /// </summary>
  34. public bool Exists(<#= CodeCommon.GetInParameter(host.Keys, false) #>)
  35. {
  36. return dal.Exists(<#= CodeCommon.GetFieldstrlist(host.Keys, false)#>);
  37. }
  38. /// <summary>
  39. /// 增加一条数据
  40. /// </summary>
  41. public <#= returnValue #> Add(<#= ModelSpace #> model)
  42. {
  43. <#if (identityKey!=null) {#>
  44. return dal.Add(model);
  45. <#} else {#>
  46. dal.Add(model);
  47. <#}#>
  48. }
  49. /// <summary>
  50. /// 更新一条数据
  51. /// </summary>
  52. public bool Update(<#= ModelSpace #> model)
  53. {
  54. return dal.Update(model);
  55. }
  56. /// <summary>
  57. /// 删除一条数据
  58. /// </summary>
  59. public bool Delete(<#=CodeCommon.GetInParameter(host.Keys, true)#>)
  60. {
  61. return dal.Delete(<#=CodeCommon.GetFieldstrlist(host.Keys, true)#>);
  62. }
  63. <#if (identityKey!=null) {#>
  64. /// <summary>
  65. /// 批量删除一批数据
  66. /// </summary>
  67. public bool DeleteList(string <#=identityKey.ColumnName#>list )
  68. {
  69. return dal.DeleteList(<#=identityKey.ColumnName#>list );
  70. }
  71. <#}#>
  72. /// <summary>
  73. /// 得到一个对象实体
  74. /// </summary>
  75. public <#= ModelSpace #> GetModel(<#= CodeCommon.GetInParameter(host.Keys,true) #>)
  76. {
  77. return dal.GetModel(<#=CodeCommon.GetFieldstrlist(host.Keys, true)#>);
  78. }
  79. /// <summary>
  80. /// 得到一个对象实体,从缓存中
  81. /// </summary>
  82. public <#= ModelSpace #> GetModelByCache(<#= CodeCommon.GetInParameter(host.Keys,true) #>)
  83. {
  84. string CacheKey = "<#= host.TableName #>Model-" + <#=CodeCommon.GetFieldstrlistAdd(host.Keys, true)#>;
  85. object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
  86. if (objModel == null)
  87. {
  88. try
  89. {
  90. objModel = dal.GetModel(<#=CodeCommon.GetFieldstrlist(host.Keys, true)#>);
  91. if (objModel != null)
  92. {
  93. int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
  94. Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
  95. }
  96. }
  97. catch{}
  98. }
  99. return (<#= ModelSpace #>)objModel;
  100. }
  101. /// <summary>
  102. /// 获得数据列表
  103. /// </summary>
  104. public DataSet GetList(string strWhere)
  105. {
  106. return dal.GetList(strWhere);
  107. }
  108. /// <summary>
  109. /// 获得前几行数据
  110. /// </summary>
  111. public DataSet GetList(int Top,string strWhere,string filedOrder)
  112. {
  113. return dal.GetList(Top,strWhere,filedOrder);
  114. }
  115. /// <summary>
  116. /// 获得数据列表
  117. /// </summary>
  118. public List<<#= ModelSpace #>> GetModelList(string strWhere)
  119. {
  120. DataSet ds = dal.GetList(strWhere);
  121. return DataTableToList(ds.Tables[0]);
  122. }
  123. /// <summary>
  124. /// 获得数据列表
  125. /// </summary>
  126. public List<<#= ModelSpace #>> DataTableToList(DataTable dt)
  127. {
  128. List<<#= ModelSpace #>> modelList = new List<<#= ModelSpace #>>();
  129. int rowsCount = dt.Rows.Count;
  130. if (rowsCount > 0)
  131. {
  132. <#= ModelSpace #> model;
  133. for (int n = 0; n < rowsCount; n++)
  134. {
  135. model = new <#= ModelSpace #>();
  136. <# foreach (ColumnInfo c in host.Fieldlist) { #>
  137. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="int"||
  138. CodeCommon.DbTypeToCS(c.TypeName)=="long"||
  139. CodeCommon.DbTypeToCS(c.TypeName)=="float"||
  140. CodeCommon.DbTypeToCS(c.TypeName)=="DateTime"||
  141. CodeCommon.DbTypeToCS(c.TypeName)=="decimal")
  142. {#>
  143. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  144. {
  145. model.<#=c.ColumnName#>=<#=CodeCommon.DbTypeToCS(c.TypeName)#>.Parse(dt.Rows[n]["<#=c.ColumnName#>"].ToString());
  146. }
  147. <# } #>
  148. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="string") {#>
  149. model.<#=c.ColumnName#>= dt.Rows[n]["<#=c.ColumnName#>"].ToString();
  150. <# } #>
  151. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="byte[]") {#>
  152. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  153. {
  154. model.<#=c.ColumnName#>= (byte[])dt.Rows[n]["<#=c.ColumnName#>"];
  155. }
  156. <# } #>
  157. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="Guid") {#>
  158. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  159. {
  160. model.<#=c.ColumnName#>= dt.Rows[n]["<#=c.ColumnName#>"].ToString();
  161. }
  162. <# } #>
  163. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="bool") {#>
  164. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  165. {
  166. if((dt.Rows[n]["<#=c.ColumnName#>"].ToString()=="1")||(dt.Rows[n]["<#=c.ColumnName#>"].ToString().ToLower()=="true"))
  167. {
  168. model.<#=c.ColumnName#>= true;
  169. }
  170. else
  171. {
  172. model.<#=c.ColumnName#>= false;
  173. }
  174. }
  175. <# } #>
  176. <# } #>
  177. modelList.Add(model);
  178. }
  179. }
  180. return modelList;
  181. }
  182. /// <summary>
  183. /// 获得数据列表
  184. /// </summary>
  185. public DataSet GetAllList()
  186. {
  187. return GetList("");
  188. }
  189. #endregion
  190. }
  191. }