tijian_jichuang/Code/SOH.BLL.Contract/ITuiFei.cs
2025-02-20 11:54:48 +08:00

27 lines
730 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}
}