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

19 lines
408 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_jgwh
{
List<t_jgwh> GetAlljgwh(int jcxmid);
String GetAllJgwhStr(int jcxmid);
OperationResult Update(t_jgwh jgwh);
OperationResult Insert(t_jgwh jgwh);
OperationResult Del(t_jgwh jgwh);
}
}