Commit 18efc875 authored by liudong1993's avatar liudong1993

1

parent 85fd822a
......@@ -41,7 +41,6 @@ namespace Mall.Module.Product
/// 商品分类
/// </summary>
private readonly RB_Product_CategoryRepository product_CategoryRepository = new RB_Product_CategoryRepository();
/// <summary>
/// 商品
/// </summary>
......@@ -58,7 +57,6 @@ namespace Mall.Module.Product
/// 商品分类
/// </summary>
private readonly RB_Goods_CategoryRepository goods_CategoryRepository = new RB_Goods_CategoryRepository();
/// <summary>
/// 分销商等级
/// </summary>
......@@ -87,7 +85,6 @@ namespace Mall.Module.Product
/// 商品会员价格
/// </summary>
private readonly RB_Goods_MemberPriceRepository goods_MemberPriceRepository = new RB_Goods_MemberPriceRepository();
/// <summary>
/// 商户仓储层对象
/// </summary>
......@@ -108,7 +105,6 @@ namespace Mall.Module.Product
/// 地区处理
/// </summary>
private readonly Rb_destinationRepository destinationRepository = new Rb_destinationRepository();
/// <summary>
/// 商品分销
/// </summary>
......@@ -121,7 +117,6 @@ namespace Mall.Module.Product
/// 粉象VIP返佣比例
/// </summary>
private readonly RB_Distributor_FXCommissionRepository distributor_FXCommissionRepository = new RB_Distributor_FXCommissionRepository();
/// <summary>
/// 微店基础
/// </summary>
......@@ -134,7 +129,6 @@ namespace Mall.Module.Product
/// 微店商品价格
/// </summary>
private RB_SmallShops_PriceRepository smallShops_PriceRepository = new RB_SmallShops_PriceRepository();
/// <summary>
/// 司导站点
/// </summary>
......@@ -143,9 +137,27 @@ namespace Mall.Module.Product
/// 司导站点地区
/// </summary>
private RB_GuideCar_SiteRegionRepository SiteRegionRepository = new RB_GuideCar_SiteRegionRepository();
/// <summary>
/// 司导基础配置
/// </summary>
private RB_GuideCar_BaseRepository guideCar_BaseRepository = new RB_GuideCar_BaseRepository();
#region 基础配置
/// <summary>
/// 获取基础配置
/// </summary>
/// <param name="tenantId"></param>
/// <param name="mallBaseId"></param>
/// <returns></returns>
public RB_GuideCar_Base_Extend GetGuideCarInfo(int tenantId, int mallBaseId)
{
var model = guideCar_BaseRepository.GetList(new RB_GuideCar_Base_Extend() { TenantId = tenantId, MallBaseId = mallBaseId }).FirstOrDefault();
if (model == null) {
model = new RB_GuideCar_Base_Extend();
}
return model;
}
#endregion
......
......@@ -15,7 +15,7 @@ namespace Mall.Repository.GuideCar
/// </summary>
/// <param name="dmodel">查询条件</param>
/// <returns></returns>
public List<RB_GuideCar_Base_Extend> GetLogisticsRulesList(RB_GuideCar_Base_Extend dmodel)
public List<RB_GuideCar_Base_Extend> GetList(RB_GuideCar_Base_Extend dmodel)
{
string where = $" 1=1 ";
if (dmodel.TenantId > 0)
......
......@@ -29,6 +29,16 @@ namespace Mall.WebApi.Controllers.MallBase
private readonly GuideCarModule guideCarModule = new GuideCarModule();
#region 基础配置
/// <summary>
/// 获取司导专区基础配置
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult GetGuideCarInfo() {
var req = RequestParm;
var model = guideCarModule.GetGuideCarInfo(req.TenantId, req.MallBaseId);
}
#endregion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment