54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using SOH.Data;
|
|
|
|
namespace SOH.BLL
|
|
{
|
|
/// <summary>
|
|
/// 团检应收回款相关
|
|
/// </summary>
|
|
public interface It_tjhk
|
|
{
|
|
//根据客户名称、客户条码、排序信息查询客户合同信息
|
|
List<Entities.DTO.dto_tjkhht> GetKhhts(string khmc, int htbm, short nd,short fddm);
|
|
|
|
/// <summary>
|
|
/// 根据合同编码获取团检分组的相关信息
|
|
/// </summary>
|
|
/// <param name="htbm"></param>
|
|
/// <returns></returns>
|
|
List<Entities.DTO.dto_tjhtzx> GetTjqk(int htbm);
|
|
|
|
/// <summary>
|
|
/// 删除未检人员
|
|
/// </summary>
|
|
/// <param name="ltt"></param>
|
|
/// <returns></returns>
|
|
OperationResult DeleteWjry(List<t_ttgzb> ltt);
|
|
|
|
/// <summary>
|
|
/// 将未检人员设置为待查
|
|
/// </summary>
|
|
/// <param name="ltt"></param>
|
|
/// <returns></returns>
|
|
OperationResult SetDaiCha(List<t_ttgzb> ltt);
|
|
|
|
/// <summary>
|
|
/// 合同结账
|
|
/// </summary>
|
|
/// <param name="htbm"></param>
|
|
/// <returns></returns>
|
|
OperationResult HtJieZhang(int htbm);
|
|
|
|
/// <summary>
|
|
/// 合同反结
|
|
/// </summary>
|
|
/// <param name="htbm"></param>
|
|
/// <returns></returns>
|
|
OperationResult HtFanJie(int htbm);
|
|
}
|
|
}
|