20 lines
427 B
C#
20 lines
427 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SOH.Entities;
|
|||
|
|
using SOH.Data;
|
|||
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace SOH.BLL
|
|||
|
|
{
|
|||
|
|
public interface Its_kh
|
|||
|
|
{
|
|||
|
|
//只显示本人录入信息(过滤)
|
|||
|
|
string Getkh(string p,string ywy);
|
|||
|
|
List<ts_kh> GetkhBykhbm(int khbm);
|
|||
|
|
OperationResult Insert(ts_kh kh);
|
|||
|
|
OperationResult Update(ts_kh kh);
|
|||
|
|
}
|
|||
|
|
}
|