25 lines
641 B
C#
25 lines
641 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using SOH.Data;
|
|
|
|
namespace SOH.BLL
|
|
{
|
|
public interface It_ht
|
|
{
|
|
List<Entities.t_ht> GetListByparam(string param);
|
|
List<Entities.t_ht> GetListByxsy(string xsy,string param);
|
|
string GetListByxsy2(string xsy, string param);
|
|
/// <summary>
|
|
/// 根据合同编码获取合同结算标题
|
|
/// </summary>
|
|
/// <param name="htbm"></param>
|
|
/// <returns></returns>
|
|
string GetTitleByHtbm(int htbm);
|
|
|
|
string GetListByxsyWjrs(string xsy, string param);
|
|
}
|
|
}
|