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