22 lines
531 B
C#
22 lines
531 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_jcxm
|
|||
|
|
{
|
|||
|
|
List<t_jcxm> getAllJcxm(int ksbm);
|
|||
|
|
String getAllJcxmStr(int ksbm);
|
|||
|
|
OperationResult Update(t_jcxm jcxm);
|
|||
|
|
OperationResult Insert(t_jcxm jcxm);
|
|||
|
|
List<t_jcxm> getJcxmByjcxmbm(int jcxmbm);
|
|||
|
|
t_jcxm getJcxm(int jcxmbm);
|
|||
|
|
t_ks getKs(int ksbm);
|
|||
|
|
List<t_jcxm> getJcxmByjcxmmc(string jcxmmc);
|
|||
|
|
}
|
|||
|
|
}
|