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

22 lines
614 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_htfzb
{
List<t_htfzb> GetListByhtbm(int htbm);
List<t_htfzb> GetListByhtbm(int[] htbm);
OperationResult Insert(t_htfzb b, List<t_htxmb> xmb);
OperationResult Update(t_htfzb b, List<t_htxmb> xmb);
OperationResult Delete(t_htfzb b);
t_htfzb GetModelByfzbm(int fzbm);
List<t_htfzb> GetModelListByfzbm(int fzbm);
t_htfzb GethtfzbmByhtbmAndhtfzmc(int htbm, string htfzmc);
}
}