using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Models;
using System.Data.SqlClient;
using System.Data;
namespace DAL
{
///
/// 团组保险费用多表联查数据访问类
///
public class ViewGroupsCustomersPayService
{
///
/// 查询所有
///
/// sql语句
/// 可变参数数组
/// 返回集合
List excuteSql(string sql, params SqlParameter[] param)
{
return ServiceBase.excuteSql(new ViewGroupsCustomersPay(), "ViewGroupsCustomersPay", sql, CommandType.Text, param);
}
///
/// 获取单个对象
///
/// sql语句
/// 可变参数数组
/// 返回空或者单个对象
ViewGroupsCustomersPay excuteType(string sql, params SqlParameter[] param)
{
//查询结果放入对象集合
List ctggdList = excuteSql(sql, param);
//判断集合是否为空
if (ctggdList == null || ctggdList.Count == 0)
//返回null
return null;
//返回单个对象
return ctggdList[0];
}
///
/// 根据编号查询对象信息
///
/// 对象编号
/// 返回空或者单个对象信息
public ViewGroupsCustomersPay GetViewGroupsCustomersPayByID(int id)
{
//调用获取单个对象的方法
return excuteType("select * from ViewGroupsCustomersPay where Id = @id and IsDel = 0", new SqlParameter("@id", id));
}
///
/// 获取全部
///
///
public List GetAll()
{
return excuteSql("select * from ViewGroupsCustomersPay where IsDel = 0");
}
///
/// 根据编号查询对象信息
///
/// 对象编号
/// 返回空或者对象信息
public List GetByDIId(int DIId)
{
//调用获取单个对象的方法
//return excuteSql("select gc.OperatorDate,gc.ClientName,sd.[Name],ccp.PayMoney as Spread,gc.Remark from GroupsCustomers gc join CreditCardPayment ccp on ccp.Diid = gc.Diid and ccp.Cid = gc.Id join SetData sd on sd.Id =ccp.PaymentCurrency where gc.DIID = @DIId and gc.IsDel = 0 and ccp.CTable=82 and ccp.IsPay = 1", new SqlParameter("@DIId", DIId));
//去除ispay=1条件
return excuteSql("select ccp.IsMatchCreditCard,ccp.Operator,ccp.AuditGMDate,sd1.name as PaydName,ccp.OrbitalPrivateTransfer,ccp.PayDid,ccp.payee,ccp.ispay,gc.OperatorDate,gc.ClientName,sd.[Name],ccp.PayMoney as Spread,gc.Remark from GroupsCustomers gc join CreditCardPayment ccp on ccp.Diid = gc.Diid and ccp.Cid = gc.Id join SetData sd on sd.Id =ccp.PaymentCurrency join setdata sd1 on sd1.id=ccp.PayDid where gc.DIID = @DIId and gc.IsDel = 0 and ccp.CTable=82 and ccp.IsAuditGM <> 2 and ccp.isDel=0", new SqlParameter("@DIId", DIId));
}
}
}