41 lines
1009 B
C#
41 lines
1009 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SOH.Entities;
|
|||
|
|
|
|||
|
|
namespace SOH.BLL
|
|||
|
|
{
|
|||
|
|
public interface It_jjxb
|
|||
|
|
{
|
|||
|
|
String GetjjxByhtbm(int htbm);
|
|||
|
|
string GetjjxXmBytm(int tm);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据合同分组编码获取公费加项合计
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="htfzbm"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
int GetGfjxhjByHtfzbm(int htfzbm);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据合同编码获取有加项的信息
|
|||
|
|
/// </summary>
|
|||
|
|
List<Entities.DTO.dto_jxfz> GetJxxxByHtbm(int htbm);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据tm获取加项信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="tm"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
string GetJxByTm(int tm);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据htbm获取加减项目列表
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="htbm"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
string GetDcjjxmxByhtbm(int htbm);
|
|||
|
|
}
|
|||
|
|
}
|