Commit 42b2a5b0 authored by 吴春's avatar 吴春

提交代码

parent 1830f509
......@@ -1998,6 +1998,7 @@ namespace Mall.WebApi.Controllers
{
resultMallShopStyle?.main,
resultMallShopStyle?.secondary,
resultMallShopStyle?.IsEducation,
};
var setting = new
......
......@@ -983,7 +983,23 @@ namespace Mall.WebApi.Controllers.MallBase
}));
}
/// <summary>
/// 获取默认上传信息的详情
/// </summary>
/// <returns></returns>
public ApiResult GetDefaultFileStore()
{
var parms = RequestParm;
var query = new RB_File_Store();
query.TenantId = UserInfo.TenantId;
query.MallBaseId = parms.MallBaseId;
var model = mallBaseModule.GetFileStoreList(query).Where(x=>x.IsDefault==1).FirstOrDefault();
if (model == null)
{
model = new RB_File_Store();
}
return ApiResult.Success("获取成功", model);
}
#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