using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Level2 { public interface IL2_SOFT_PRODUCT_Q : IRepository { List GetListL2_Soft_product(); Model.Entity.L2_SOFT_PRODUCT GetL2_Soft_product(decimal productid); List Get2Soft_Products(string productName, Pager pager); /// /// 排序变更 /// /// /// 1:向上 2:向下 void MoveProduct(int ProductId, int t = 1); decimal GetNextId(); int GetNextSort(); } public class L2ProductQueryDto { public string ProductName { get; set; } } }