Commit a4eae11f authored by 吴春's avatar 吴春

是是是

parents d7ea9a61 b072866b
Mall/CRM.Model/obj/
Mall/Mall.CacheManager/obj/
Mall/Mall.CacheManager/bin/
Mall/Mall.Common/obj/
Mall/Mall.Common/bin/
Mall/Mall.DataAccess/bin/
Mall/Mall.DataAccess/obj/
Mall/Mall.DataHelper/obj/
Mall/Mall.DataHelper/bin/
Mall/Mall.IM/bin/
Mall/Mall.IM/obj/
Mall/Mall.Model/bin/
Mall/Mall.Model/obj/
Mall/Mall.Repository/obj/
Mall/Mall.Repository/bin/
Mall/Mall.ThirdCore/obj/
Mall/Mall.ThirdCore/bin/
Mall/Mall.WebApi/bin/
Mall/Mall.WebApi/obj/
Mall/Mall.Module.User/obj/
......
This source diff could not be displayed because it is too large. You can view the blob instead.
using System;
using System.Collections.Generic;
using System.Text;
using Mall.Model.Extend.User;
using Mall.Repository;
namespace Mall.Module.User
{
/// <summary>
/// 商户表处理层
/// </summary>
public class TenantModule
{
/// <summary>
/// 商户仓储层对象
/// </summary>
private Mall.Repository.User.RB_TenantRepository tenantRepository = new Repository.User.RB_TenantRepository();
/// <summary>
/// 根据查询条件获取商户列表
/// </summary>
/// <param name="query">查询条件</param>
/// <returns></returns>
public List<RB_Tenant_Extend> GetTenantListModule(RB_Tenant_Extend query)
{
return tenantRepository.GetListRepository(query);
}
/// <summary>
/// 获取商户根也列表
/// </summary>
/// <param name="pageIndex">页码</param>
/// <param name="pageSize">每页显示条数</param>
/// <param name="rowCount">总条数</param>
/// <param name="query">查询条件</param>
/// <returns></returns>
public List<RB_Tenant_Extend> GetTenantPageListModule(int pageIndex, int pageSize, out long rowCount, RB_Tenant_Extend query)
{
return tenantRepository.GetPageListRepository(pageIndex, pageSize, out rowCount, query);
}
/// <summary>
/// 新增修改商户信息
/// </summary>
/// <param name="extModel"></param>
/// <returns></returns>
public bool SetTenantModule(RB_Tenant_Extend extModel)
{
bool flag = false;
if (extModel.TenantId > 0)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{ nameof(RB_Tenant_Extend.MallName),extModel.MallName},
};
flag = tenantRepository.Update(fileds, new WhereHelper(nameof(RB_Tenant_Extend.TenantId), extModel.TenantId));
}
else
{
int NewId = tenantRepository.Insert(extModel);
extModel.TenantId = NewId;
flag = NewId > 0;
}
return flag;
}
/// <summary>
/// 根据编号获取商户信息
/// </summary>
/// <param name="TenantId">商户号</param>
/// <returns></returns>
public RB_Tenant_Extend GetTenantModule(object TenantId)
{
RB_Tenant_Extend extModel = tenantRepository.GetEntity<RB_Tenant_Extend>(TenantId);
if (extModel == null)
{
extModel = new RB_Tenant_Extend();
}
return extModel;
}
/// <summary>
/// 更新账户张婷
/// </summary>
/// <param name="TenantId">商户号</param>
/// <param name="AccountStatus">账户状态</param>
/// <returns></returns>
public bool SetTenantStatusModule(object TenantId, int AccountStatus)
{
bool flag = false;
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{ nameof(RB_Tenant_Extend.AccountStatus),AccountStatus},
};
flag = tenantRepository.Update(fileds, new WhereHelper(nameof(RB_Tenant_Extend.TenantId), TenantId));
return flag;
}
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
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