21 lines
486 B
C#
21 lines
486 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_CITY_Q
|
|
{
|
|
List<WX.CRM.Model.Entity.BAS_CITY> GetListByProvince(int id);
|
|
WX.CRM.Model.Entity.BAS_CITY GetCity(decimal id);
|
|
|
|
/// <summary>
|
|
/// 获取省地址
|
|
/// </summary>
|
|
/// <param name="pid"></param>
|
|
/// <param name="cid"></param>
|
|
/// <returns></returns>
|
|
string GetAddressStr(decimal? pid, decimal? cid);
|
|
}
|
|
|
|
|
|
}
|