40 lines
1.2 KiB
C#
40 lines
1.2 KiB
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 It_zhxm
|
|||
|
|
{
|
|||
|
|
List<t_zhxm> GetzhxmByks(int ksbm,int fddm);
|
|||
|
|
List<Entities.t_zhxm> GetzhxmByksAll(int ksbm, int fddm);
|
|||
|
|
List<t_zhxm> GetzhxmByks1(int ksbm, int fddm);
|
|||
|
|
OperationResult Update(t_zhxm zhxm);
|
|||
|
|
OperationResult Insert(t_zhxm zhxm);
|
|||
|
|
List<Entities.t_zhxm> GetzhxmByddfzbm(int ddfzbm);
|
|||
|
|
List<t_zhxm> GetzhxmByhtfzbm(int htfzbm);
|
|||
|
|
List<t_zhxm> GetzhxmByzjm(string zjm);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据助记符查询组合项目
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="zjf"></param>
|
|||
|
|
/// <param name="fddm"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
List<Entities.DTO.dto_zhxm> GetZhxmByZjf(string zjf, short fddm,short xb,short hyzk);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据分店代码查询所有未注销的组合项目
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="fddm"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
List<Entities.DTO.dto_zhxm> GetZhxm(short fddm);
|
|||
|
|
|
|||
|
|
List<Entities.DTO.dto_zhxm> GetZhxmBytcbm(short tcbm);
|
|||
|
|
}
|
|||
|
|
}
|