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 getAllJcxm(int ksbm); String getAllJcxmStr(int ksbm); OperationResult Update(t_jcxm jcxm); OperationResult Insert(t_jcxm jcxm); List getJcxmByjcxmbm(int jcxmbm); t_jcxm getJcxm(int jcxmbm); t_ks getKs(int ksbm); List getJcxmByjcxmmc(string jcxmmc); } }