TG.WXCRM.V4/IBLL/Level2/IL2_SOFT_PRODUCT_Q.cs

29 lines
806 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}