Commit d9346fe5 authored by 黄奎's avatar 黄奎

新增实体类

parent 90e6c755
......@@ -211,5 +211,11 @@ namespace Edu.Model.Entity.Customer
/// 同业类型 1企业 2学校
/// </summary>
public int CustomerType { get; set; }
/// <summary>
/// 微信号码
/// </summary>
public string WeChatNo { get; set; }
}
}
\ No newline at end of file
using Edu.Common.Enum;
using System;
using VT.FW.DB;
namespace Edu.Model.Entity.Customer
{
/// <summary>
/// 企业信息实体类
/// </summary>
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Enterprise
{
/// <summary>
/// 主键编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 企业名称
/// </summary>
public string EnterpriseName { get; set; }
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public DateStateEnum Status { get; set; }
/// <summary>
/// 集团编号
/// </summary>
public int Group_Id { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int CreateBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 修改人
/// </summary>
public int UpdateBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdateTime { get; set; }
}
}
using Edu.Common.Enum;
using System;
using VT.FW.DB;
namespace Edu.Model.Entity.System
{
/// <summary>
/// 渠道实体类
/// </summary>
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Channel
{
/// <summary>
/// 主键编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 渠道名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public DateStateEnum Status { get; set; }
/// <summary>
/// 集团编号
/// </summary>
public int Group_Id { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int CreateBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 修改人
/// </summary>
public int UpdateBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdateTime { get; set; }
}
}
using Edu.Common.Enum;
using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.System
{
/// <summary>
/// 学习目的实体类
/// </summary>
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_LearningGoals
{
/// <summary>
/// 主键编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 学习目的名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public DateStateEnum Status { get; set; }
/// <summary>
/// 集团编号
/// </summary>
public int Group_Id { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int CreateBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 修改人
/// </summary>
public int UpdateBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdateTime { get; set; }
}
}
using Edu.Model.Entity.Customer;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Customer
{
/// <summary>
/// 企业信息扩展实体类
/// </summary>
public class RB_Enterprise_Extend: RB_Enterprise
{
}
}
using Edu.Model.Entity.System;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.System
{
/// <summary>
/// 渠道扩展实体类
/// </summary>
public class RB_Channel_Extend : RB_Channel
{
}
}
using Edu.Model.Entity.System;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.System
{
/// <summary>
/// 学习目的扩展实体类
/// </summary>
public class RB_LearningGoals_Extend : RB_LearningGoals
{
}
}
......@@ -45,6 +45,11 @@ namespace Edu.Module.Customer
/// </summary>
private readonly RB_StageRepository stageRepository = new RB_StageRepository();
/// <summary>
/// 企业信息仓储层对象
/// </summary>
private readonly RB_EnterpriseRepository enterpriseRepository = new RB_EnterpriseRepository();
/// <summary>
/// 获取客户分页列表..
......@@ -92,6 +97,7 @@ namespace Edu.Module.Customer
{nameof(RB_Customer_Extend.EnterpriseName),model.EnterpriseName },
{nameof(RB_Customer_Extend.CustomerType),model.CustomerType },
{nameof(RB_Customer_Extend.UpdateTime),model.UpdateTime },
{nameof(RB_Customer_Extend.WeChatNo),model.WeChatNo },
};
flag = customerRepository.Update(fileds, new WhereHelper(nameof(RB_Customer_Extend.CustomerId), model.CustomerId));
if (flag) {
......@@ -363,5 +369,84 @@ namespace Edu.Module.Customer
{
return customerRepository.GetCustomerListRepository(query);
}
/// <summary>
/// 获取企业分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Enterprise_Extend> GetEnterprisePageModule(int pageIndex, int pageSize, out long rowsCount, RB_Enterprise_Extend query)
{
var list = enterpriseRepository.GetEnterprisePageRepository(pageIndex, pageSize, out rowsCount, query);
return list;
}
/// <summary>
/// 获取企业列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Enterprise_Extend> GetEnterpriseListModule(RB_Enterprise_Extend query)
{
var list = enterpriseRepository.GetEnterpriseListRepository(query);
return list;
}
/// <summary>
/// 新增修改企业信息
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public bool SetEnterpriseModule(RB_Enterprise_Extend model)
{
bool flag = false;
if (model.Id > 0)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_Enterprise_Extend.EnterpriseName),model.EnterpriseName },
{nameof(RB_Enterprise_Extend.UpdateBy),model.UpdateBy },
{nameof(RB_Enterprise_Extend.UpdateTime),model.UpdateTime },
};
flag = enterpriseRepository.Update(fileds, new WhereHelper(nameof(RB_Enterprise_Extend.Id), model.Id));
}
else
{
var newId = enterpriseRepository.Insert(model);
model.Id = newId;
flag = newId > 0;
}
return flag;
}
/// <summary>
/// 根据编号获取企业信息实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public RB_Enterprise_Extend GetEnterpriseModule(int Id)
{
var extModel = enterpriseRepository.GetEntity<RB_Enterprise_Extend>(Id);
return extModel;
}
/// <summary>
/// 根据编号删除企业信息
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public bool RemoveEnterpriseModule(int Id)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_Enterprise_Extend.Status),(int)DateStateEnum.Delete },
};
bool flag = enterpriseRepository.Update(fileds, new WhereHelper(nameof(RB_Enterprise_Extend.Id), Id));
return flag;
}
}
}
......@@ -11,6 +11,7 @@ using Edu.Model.ViewModel.User;
using Edu.Common.Plugin;
using Edu.Repository.System;
using Edu.Model.Entity.System;
using Edu.Model.ViewModel.System;
namespace Edu.Module.Customer
{
......@@ -34,11 +35,6 @@ namespace Edu.Module.Customer
/// </summary>
private readonly RB_Student_VisitRepository student_VisitRepository = new RB_Student_VisitRepository();
/// <summary>
/// 学生
/// </summary>
private readonly RB_StudentRepository studentRepository = new RB_StudentRepository();
/// <summary>
/// 学员日志仓储层对象
/// </summary>
......@@ -74,6 +70,16 @@ namespace Edu.Module.Customer
/// </summary>
private readonly RB_Student_TypeRepository student_TypeRepository = new RB_Student_TypeRepository();
/// <summary>
/// 学习目的仓储层对象
/// </summary>
private readonly RB_LearningGoalsRepository learningGoalsRepository = new RB_LearningGoalsRepository();
/// <summary>
/// 来源渠道仓储层对象
/// </summary>
private readonly RB_ChannelRepository channelRepository = new RB_ChannelRepository();
#region 学员约访
......@@ -804,5 +810,164 @@ namespace Edu.Module.Customer
bool flag = student_TypeRepository.Update(fileds, new WhereHelper(nameof(RB_Stage.Id), Id));
return flag;
}
/// <summary>
/// 获取学习目的分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_LearningGoals_Extend> GetLearningGoalsPageModule(int pageIndex, int pageSize, out long rowsCount, RB_LearningGoals_Extend query)
{
var list = learningGoalsRepository.GetLearningGoalsPageRepository(pageIndex, pageSize, out rowsCount, query);
return list;
}
/// <summary>
/// 获取学习目的列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_LearningGoals_Extend> GetLearningGoalsListModule(RB_LearningGoals_Extend query)
{
var list = learningGoalsRepository.GetLearningGoalsListRepository(query);
return list;
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public RB_LearningGoals_Extend GetLearningGoalsExtEntityModule(int Id)
{
var extModel = learningGoalsRepository.GetLearningGoalsExtEntityRepository(Id);
return extModel;
}
/// <summary>
/// 新增修改学习目的
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public bool SetLearningGoalsModule(RB_LearningGoals_Extend model)
{
bool flag = false;
if (model.Id > 0)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_LearningGoals_Extend.Name),model.Name },
{nameof(RB_LearningGoals_Extend.UpdateBy),model.UpdateBy },
{nameof(RB_LearningGoals_Extend.UpdateTime),model.UpdateTime },
};
flag = learningGoalsRepository.Update(fileds, new WhereHelper(nameof(RB_LearningGoals_Extend.Id), model.Id));
}
else
{
var newId = learningGoalsRepository.Insert(model);
model.Id = newId;
flag = newId > 0;
}
return flag;
}
/// <summary>
/// 删除学习目的
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public bool RemoveLearningGoalsModule(int Id)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_LearningGoals_Extend.Status),(int)DateStateEnum.Delete },
};
bool flag = learningGoalsRepository.Update(fileds, new WhereHelper(nameof(RB_LearningGoals_Extend.Id), Id));
return flag;
}
/// <summary>
/// 获取渠道分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Channel_Extend> GetChannelPageModule(int pageIndex, int pageSize, out long rowsCount, RB_Channel_Extend query)
{
var list = channelRepository.GetChannelPageRepository(pageIndex, pageSize, out rowsCount, query);
return list;
}
/// <summary>
/// 获取渠道列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Channel_Extend> GetChannelListModule(RB_Channel_Extend query)
{
var list = channelRepository.GetChannelListRepository(query);
return list;
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public RB_Channel_Extend GetChannelExtEntityModule(int Id)
{
var extModel = channelRepository.GetChannelExtEntityRepository(Id);
return extModel;
}
/// <summary>
/// 新增修改收客
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public bool SetChannelModule(RB_Channel_Extend model)
{
bool flag = false;
if (model.Id > 0)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_Channel_Extend.Name),model.Name },
{nameof(RB_Channel_Extend.UpdateBy),model.UpdateBy },
{nameof(RB_Channel_Extend.UpdateTime),model.UpdateTime },
};
flag = channelRepository.Update(fileds, new WhereHelper(nameof(RB_Channel_Extend.Id), model.Id));
}
else
{
var newId = channelRepository.Insert(model);
model.Id = newId;
flag = newId > 0;
}
return flag;
}
/// <summary>
/// 删除收客渠道
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public bool RemoveChannelModule(int Id)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_Channel_Extend.Status),(int)DateStateEnum.Delete},
};
var flag = channelRepository.Update(fileds, new WhereHelper(nameof(RB_Channel_Extend.Id), Id));
return flag;
}
}
}
using Edu.Common.Enum;
using Edu.Model.Entity.Customer;
using Edu.Model.ViewModel.Customer;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using VT.FW.DB.Dapper;
namespace Edu.Repository.Customer
{
/// <summary>
/// 企业信息仓储层
/// </summary>
public class RB_EnterpriseRepository:BaseRepository<RB_Enterprise>
{
/// <summary>
/// 获取企业分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Enterprise_Extend> GetEnterprisePageRepository(int pageIndex, int pageSize, out long rowsCount, RB_Enterprise_Extend query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"
SELECT A.*
FROM RB_Enterprise AS A
WHERE 1=1
");
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Enterprise_Extend.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Enterprise_Extend.Group_Id), query.Group_Id);
}
if (!string.IsNullOrEmpty(query.EnterpriseName))
{
builder.AppendFormat(" AND A.{0} LIKE @EnterpriseName ", nameof(RB_Enterprise_Extend.EnterpriseName));
parameters.Add("EnterpriseName", "%" + query.EnterpriseName.Trim() + "%");
}
}
return GetPage<RB_Enterprise_Extend>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
/// <summary>
/// 获取企业列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Enterprise_Extend> GetEnterpriseListRepository( RB_Enterprise_Extend query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"
SELECT A.*
FROM RB_Enterprise AS A
WHERE 1=1
");
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Enterprise_Extend.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Enterprise_Extend.Group_Id), query.Group_Id);
}
if (!string.IsNullOrEmpty(query.EnterpriseName))
{
builder.AppendFormat(" AND A.{0} LIKE @EnterpriseName ", nameof(RB_Enterprise_Extend.EnterpriseName));
parameters.Add("EnterpriseName", "%" + query.EnterpriseName.Trim() + "%");
}
}
return Get<RB_Enterprise_Extend>( builder.ToString(), parameters).ToList();
}
}
}
using Edu.Common.Enum;
using Edu.Model.Entity.System;
using Edu.Model.ViewModel.System;
using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB.Dapper;
using System.Linq;
namespace Edu.Repository.System
{
/// <summary>
/// 渠道仓储层
/// </summary>
public class RB_ChannelRepository: BaseRepository <RB_Channel>
{
/// <summary>
/// 获取渠道分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Channel_Extend> GetChannelPageRepository(int pageIndex, int pageSize, out long rowsCount, RB_Channel_Extend query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"
SELECT A.*
FROM RB_Channel AS A
WHERE 1=1
");
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Channel_Extend.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Channel_Extend.Group_Id), query.Group_Id);
}
if (!string.IsNullOrEmpty(query.Name))
{
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_LearningGoals_Extend.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%");
}
}
return GetPage<RB_Channel_Extend>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
/// <summary>
/// 获取渠道列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_Channel_Extend> GetChannelListRepository(RB_Channel_Extend query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"
SELECT A.*
FROM RB_Channel AS A
WHERE 1=1
");
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Channel_Extend.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_Channel_Extend.Group_Id), query.Group_Id);
}
if (!string.IsNullOrEmpty(query.Name))
{
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_Channel_Extend.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%");
}
}
return Get<RB_Channel_Extend>(builder.ToString(), parameters).ToList();
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public RB_Channel_Extend GetChannelExtEntityRepository(int Id)
{
var extModel = base.GetEntity<RB_Channel_Extend>(Id);
return extModel;
}
}
}
using Edu.Common.Enum;
using Edu.Model.Entity.System;
using Edu.Model.ViewModel.System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using VT.FW.DB.Dapper;
namespace Edu.Repository.System
{
/// <summary>
/// 学习目的仓储层
/// </summary>
public class RB_LearningGoalsRepository : BaseRepository<RB_LearningGoals>
{
/// <summary>
/// 获取学习目的分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_LearningGoals_Extend> GetLearningGoalsPageRepository(int pageIndex, int pageSize, out long rowsCount, RB_LearningGoals_Extend query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"
SELECT A.*
FROM RB_LearningGoals AS A
WHERE 1=1
");
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_LearningGoals_Extend.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_LearningGoals_Extend.Group_Id), query.Group_Id);
}
if (!string.IsNullOrEmpty(query.Name))
{
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_LearningGoals_Extend.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%");
}
}
return GetPage<RB_LearningGoals_Extend>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
/// <summary>
/// 获取学习目的列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public List<RB_LearningGoals_Extend> GetLearningGoalsListRepository(RB_LearningGoals_Extend query)
{
StringBuilder builder = new StringBuilder();
var parameters = new DynamicParameters();
builder.AppendFormat(@"
SELECT A.*
FROM RB_LearningGoals AS A
WHERE 1=1
");
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_LearningGoals_Extend.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(@" AND A.{0}={1} ", nameof(RB_LearningGoals_Extend.Group_Id), query.Group_Id);
}
if (!string.IsNullOrEmpty(query.Name))
{
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_LearningGoals_Extend.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%");
}
}
return Get<RB_LearningGoals_Extend>(builder.ToString(), parameters).ToList();
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public RB_LearningGoals_Extend GetLearningGoalsExtEntityRepository(int Id)
{
var extModel = base.GetEntity<RB_LearningGoals_Extend>(Id);
return extModel;
}
}
}
......@@ -97,6 +97,7 @@ namespace Edu.WebApi.Controllers.Customer
Remark = base.ParmJObj.GetStringValue("Remark"),
EnterpriseName = base.ParmJObj.GetStringValue("EnterpriseName"),
CustomerType = base.ParmJObj.GetInt("CustomerType"),
WeChatNo=base.ParmJObj.GetStringValue("WeChatNo"),
};
if (string.IsNullOrEmpty(model.CustomerName))
{
......
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