29 lines
806 B
C#
29 lines
806 B
C#
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<L2_SOFT_PRODUCT>
|
||
{
|
||
|
||
List<Model.Entity.L2_SOFT_PRODUCT> GetListL2_Soft_product();
|
||
|
||
Model.Entity.L2_SOFT_PRODUCT GetL2_Soft_product(decimal productid);
|
||
List<L2_SOFT_PRODUCT> Get2Soft_Products(string productName, Pager pager);
|
||
/// <summary>
|
||
/// 排序变更
|
||
/// </summary>
|
||
/// <param name="ProductId"></param>
|
||
/// <param name="t">1:向上 2:向下</param>
|
||
void MoveProduct(int ProductId, int t = 1);
|
||
decimal GetNextId();
|
||
int GetNextSort();
|
||
}
|
||
|
||
public class L2ProductQueryDto {
|
||
|
||
public string ProductName { get; set; }
|
||
}
|
||
}
|