ViewGroupsDecreasePaymentsService.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data.SqlClient;
  6. using Models;
  7. using System.Data;
  8. namespace DAL
  9. {
  10. /// <summary>
  11. /// 增减款项多表联查数据访问类
  12. /// </summary>
  13. public class ViewGroupsDecreasePaymentsService
  14. {
  15. /// <summary>
  16. /// 查询所有
  17. /// </summary>
  18. /// <param name="sql">sql语句</param>
  19. /// <param name="param">可变参数数组</param>
  20. /// <returns>返回集合</returns>
  21. List<ViewGroupsDecreasePayments> excuteSql(string sql, params SqlParameter[] param)
  22. {
  23. return ServiceBase<ViewGroupsDecreasePayments>.excuteSql(new ViewGroupsDecreasePayments(), "ViewGroupsDecreasePayments", sql, CommandType.Text, param);
  24. }
  25. /// <summary>
  26. /// 获取单个对象
  27. /// </summary>
  28. /// <param name="sql">sql语句</param>
  29. /// <param name="param">可变参数数组</param>
  30. /// <returns>返回空或者单个对象</returns>
  31. ViewGroupsDecreasePayments excuteType(string sql, params SqlParameter[] param)
  32. {
  33. //查询结果放入对象集合
  34. List<ViewGroupsDecreasePayments> vgdpList = excuteSql(sql, param);
  35. //判断集合是否为空
  36. if (vgdpList == null || vgdpList.Count == 0)
  37. //返回null
  38. return null;
  39. //返回单个对象
  40. return vgdpList[0];
  41. }
  42. /// <summary>
  43. /// 根据编号查询对象信息
  44. /// </summary>
  45. /// <param name="id">对象编号</param>
  46. /// <returns>返回空或者单个对象信息</returns>
  47. public ViewGroupsDecreasePayments GetViewGroupsDecreasePaymentsByID(int id)
  48. {
  49. //调用获取单个对象的方法
  50. return excuteType("select * from ViewGroupsDecreasePayments where Id = @id and IsDel = 0", new SqlParameter("@id", id));
  51. }
  52. /// <summary>
  53. /// 获取全部
  54. /// </summary>
  55. /// <returns></returns>
  56. public List<ViewGroupsDecreasePayments> GetAll()
  57. {
  58. return excuteSql("select * from ViewGroupsDecreasePayments where IsDel = 0");
  59. }
  60. /// <summary>
  61. /// 根据编号查询对象信息
  62. /// </summary>
  63. /// <param name="id">对象编号</param>
  64. /// <returns>返回空或者对象信息</returns>
  65. public List<ViewGroupsDecreasePayments> GetByDIId(int DIId)
  66. {
  67. //调用获取单个对象的方法
  68. //去除ispay=1条件
  69. //return excuteSql("select gdp.OperatorDate,gdp.PriceName,gdp.Price,sd.[Name],ccp.PayMoney as Spread,ccp.DayRate,gdp.Remark from GroupsDecreasePayments gdp join CreditCardPayment ccp on ccp.Diid = gdp.Diid and ccp.Cid = gdp.Id join SetData sd on sd.Id =gdp.Currency where gdp.DIID = @DIId and gdp.IsDel = 0 and ccp.CTable=98 and ccp.IsPay=1", new SqlParameter("@DIId", DIId));
  70. //去除ispay=1条件
  71. return excuteSql("select ccp.IsMatchCreditCard,ccp.Operator,ccp.AuditGMDate,sd1.name as PaydName,ccp.OrbitalPrivateTransfer,ccp.PayDid,ccp.payee,ccp.ispay,gdp.OperatorDate,gdp.PriceName,gdp.Price,sd.[Name],ccp.PayMoney as Spread,ccp.DayRate,gdp.Remark,gdp.PriceType,gdp.coefficient from GroupsDecreasePayments gdp join CreditCardPayment ccp on ccp.Diid = gdp.Diid and ccp.Cid = gdp.Id join SetData sd on sd.Id =gdp.Currency join setdata sd1 on sd1.id=ccp.PayDid where gdp.DIID = @DIId and gdp.IsDel = 0 and ccp.CTable=98 and ccp.IsAuditGM = 1 and ccp.isDel=0", new SqlParameter("@DIId", DIId));
  72. }
  73. }
  74. }