14 lines
354 B
C#
14 lines
354 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_RESOURCEMOBILE_Q
|
|
{
|
|
string GetNumberByResId(string resId, PhoneLogModel phoneLogModel);
|
|
|
|
IDictionary<string, string> GetNumberByResId(string[] resId);
|
|
|
|
IList<string> GetNumberByResIdList(List<string> data);
|
|
}
|
|
} |