17 lines
507 B
C#
17 lines
507 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_SZZYSUBPRODUCT : IRepository<WX_SZZYSUBPRODUCT>
|
|
{
|
|
List<WX_SZZYSUBPRODUCT> GetList(decimal[] subProductIds);
|
|
WX_SZZYSUBPRODUCT GetModel(decimal subproductid);
|
|
|
|
WX_SZZYSUBPRODUCT GetModelByCode(string code);
|
|
List<WX_SZZYSUBPRODUCT> GetList_SubProduct(ref Pager pager, Wx_SzzySubProduct_QueryDto query);
|
|
}
|
|
}
|