tijian_jichuang/Code/SOH.BLL.Contract/It_bwwh.cs

19 lines
408 B
C#
Raw Normal View History

2025-02-20 11:54:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SOH.Entities;
using SOH.Data;
namespace SOH.BLL
{
public interface It_bwwh
{
List<t_bwwh> getAllBwwh(int jcxm);
OperationResult Update(t_bwwh bw);
OperationResult Insert(t_bwwh bw);
OperationResult Delete(t_bwwh bw);
List<t_bwwh> getAllBwwhIn(int[] jcxm);
}
}