ViewGroudCitySumPriceService.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Models;
  6. using System.Data.SqlClient;
  7. using System.Data;
  8. namespace DAL
  9. {
  10. /// <summary>
  11. /// 地接各项地区总费用数据访问类
  12. /// </summary>
  13. public class ViewGroudCitySumPriceService
  14. {
  15. /// <summary>
  16. /// 查询所有
  17. /// </summary>
  18. /// <param name="sql">sql语句</param>
  19. /// <param name="param">可变参数数组</param>
  20. /// <returns>返回集合</returns>
  21. List<ViewGroudCitySumPrice> excuteSql(string sql, params SqlParameter[] param)
  22. {
  23. return ServiceBase<ViewGroudCitySumPrice>.excuteSql(new ViewGroudCitySumPrice(), "ViewGroudCitySumPrice", 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. ViewGroudCitySumPrice excuteType(string sql, params SqlParameter[] param)
  32. {
  33. //查询结果放入对象集合
  34. List<ViewGroudCitySumPrice> ctggdList = excuteSql(sql, param);
  35. //判断集合是否为空
  36. if (ctggdList == null || ctggdList.Count == 0)
  37. //返回null
  38. return null;
  39. //返回单个对象
  40. return ctggdList[0];
  41. }
  42. /// <summary>
  43. /// 根据编号查询对象信息
  44. /// </summary>
  45. /// <param name="id">对象编号</param>
  46. /// <returns>返回空或者单个对象信息</returns>
  47. public ViewGroudCitySumPrice GetViewGroudCitySumPriceByID(int id)
  48. {
  49. //调用获取单个对象的方法
  50. return excuteType("select * from ViewGroudCitySumPrice where Id = @id and IsDel = 0", new SqlParameter("@id", id));
  51. }
  52. /// <summary>
  53. /// 获取全部
  54. /// </summary>
  55. /// <returns></returns>
  56. public List<ViewGroudCitySumPrice> GetAll()
  57. {
  58. return excuteSql("select * from ViewGroudCitySumPrice where IsDel = 0");
  59. }
  60. /// <summary>
  61. /// 根据编号查询对象信息
  62. /// </summary>
  63. /// <param name="id">对象编号</param>
  64. /// <returns>返回空或者对象信息</returns>
  65. public List<ViewGroudCitySumPrice> GetByDIId(int DIId)
  66. {
  67. //调用获取单个对象的方法
  68. //return excuteSql("select c.OperatorDate,ccp.PayPercentage,ccp.PayThenMoney,c.Area,sum(cc.Price) as sumPrice,sd2.[name] as Currency,ccp.PayMoney,ccp.DayRate,ccp.RMBPrice from CarTouristGuideGroundReservationsContent cc join CarTouristGuideGroundReservations c on c.id = cc.CTGGRId join CreditCardPayment ccp on ccp.Diid = c.Diid and ccp.Cid = c.Id join SetData sd on sd.id = cc.Sid join SetData sd2 on sd2.id = cc.Currency where c.DIID = @DIId and c.IsDel = 0 and ccp.CTable= 79 and ccp.IsPay = 1 group by c.Area,sd2.[name],ccp.PayMoney,ccp.DayRate,ccp.RMBPrice,ccp.PayPercentage,ccp.PayThenMoney,c.OperatorDate order by c.Area", new SqlParameter("@DIId", DIId));
  69. return excuteSql("select c.OperatorDate,ccp.PayPercentage,ccp.PayThenMoney,c.Area,sum(cc.Price) as sumPrice,sd2.[name] as Currency,ccp.PayMoney,ccp.DayRate,ccp.RMBPrice,ccp.payee from CarTouristGuideGroundReservationsContent cc join CarTouristGuideGroundReservations c on c.id = cc.CTGGRId join CreditCardPayment ccp on ccp.Diid = c.Diid and ccp.Cid = c.Id join SetData sd on sd.id = cc.Sid join SetData sd2 on sd2.id = cc.Currency where c.DIID = @DIId and c.IsDel = 0 and ccp.CTable= 79 and IsAuditGM <> 2 and ccp.isDel=0 and ccp.operator != 0 group by c.Area,sd2.[name],ccp.PayMoney,ccp.DayRate,ccp.RMBPrice,ccp.PayPercentage,ccp.PayThenMoney,c.OperatorDate,ccp.payee order by c.Area", new SqlParameter("@DIId", DIId));
  70. }
  71. }
  72. }