27 lines
730 B
C#
27 lines
730 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SOH.Entities;
|
|||
|
|
using SOH.Kernel;
|
|||
|
|
using SOH.Entities.DTO;
|
|||
|
|
using SOH.Data;
|
|||
|
|
namespace SOH.BLL
|
|||
|
|
{
|
|||
|
|
public interface ITuiFei
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据条码、类型、公自费标记、加项公自费标记查询可退费信息
|
|||
|
|
///<param name="tm" >条码号</param>
|
|||
|
|
///<param name="lx" >类型,1个检,2团检</param>
|
|||
|
|
/// </summary>
|
|||
|
|
List<dto_tempdjxm> GetKtfByTm(int tm, short lx);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 退费操作
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
OperationResult TF(short lx, List<t_tfb> ltt, List<t_sfmxb> lts, T_drxpjl td);
|
|||
|
|
}
|
|||
|
|
}
|