17 lines
400 B
C#
17 lines
400 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_CUSTOMER_LABEL : IRepository<RES_CUSTOMER_LABEL>
|
|
{
|
|
IEnumerable<RES_CUSTOMER_LABEL> List(Pager pager, QueryDto_RES_CUSTOMER_LABEL queryDto);
|
|
}
|
|
|
|
public class QueryDto_RES_CUSTOMER_LABEL
|
|
{
|
|
public string ResId { get; set; }
|
|
}
|
|
}
|