Commit 1e38f1c1 authored by 黄奎's avatar 黄奎

页面修改

parent 460e78dd
using Edu.Common.Enum;
using Edu.Common.Enum.Course;
using System;
using VT.FW.DB;
......@@ -115,5 +116,54 @@ namespace Edu.Model.Entity.User
/// </summary>
public int JapanBaseInfo { get; set; }
/// <summary>
/// 同业客户编号
/// </summary>
public int CustomerId { get; set; }
/// <summary>
/// 职业
/// </summary>
public string StuProfession { get; set; }
/// <summary>
/// 学历
/// </summary>
public GuestEducationEnum StuEducation { get; set; }
/// <summary>
/// 学习目的
/// </summary>
public GuestLearningGoalsEnum StuPurpose { get; set; }
/// <summary>
/// 客人来源
/// </summary>
public OrderSourceEnum StuSource { get; set; }
/// <summary>
/// 学员地址
/// </summary>
public string StuAddress { get; set; }
/// <summary>
/// 联系人
/// </summary>
public string StuContract { get; set; }
/// <summary>
/// 联系电话
/// </summary>
public string StuContractMobile { get; set; }
/// <summary>
/// 身份证
/// </summary>
public string StuIDCard { get; set; }
/// <summary>
/// 身份证居住地
/// </summary>
public string StuIDCardAddress { get; set; }
}
}
......@@ -102,7 +102,7 @@ namespace Edu.Module.User
}
/// <summary>
/// 添加修改讲师
/// 添加修改学生
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
......@@ -121,6 +121,18 @@ namespace Edu.Module.User
{nameof(RB_Student_ViewModel.ProviceId),model.ProviceId },
{nameof(RB_Student_ViewModel.CityId),model.CityId },
{nameof(RB_Student_ViewModel.AreaId),model.AreaId },
{nameof(RB_Student_ViewModel.AreaId),model.AreaId },
{nameof(RB_Student_ViewModel.Interest),model.Interest },
{nameof(RB_Student_ViewModel.JapanBaseInfo),model.JapanBaseInfo },
{nameof(RB_Student_ViewModel.StuProfession),model.StuProfession },
{nameof(RB_Student_ViewModel.StuEducation),model.StuEducation },
{nameof(RB_Student_ViewModel.StuPurpose),model.StuPurpose },
{nameof(RB_Student_ViewModel.StuSource),model.StuSource },
{nameof(RB_Student_ViewModel.StuAddress),model.StuAddress },
{nameof(RB_Student_ViewModel.StuContract),model.StuContract },
{nameof(RB_Student_ViewModel.StuContractMobile),model.StuContractMobile },
{nameof(RB_Student_ViewModel.StuIDCard),model.StuIDCard },
{nameof(RB_Student_ViewModel.StuIDCardAddress),model.StuIDCardAddress },
};
flag = studentRepository.Update(fileds, new WhereHelper(nameof(RB_Student_ViewModel.StuId), model.StuId));
}
......
......@@ -6,6 +6,7 @@ using Edu.Cache.User;
using Edu.Cache.WeChat;
using Edu.Common.API;
using Edu.Common.Enum;
using Edu.Common.Enum.Course;
using Edu.Common.Enum.User;
using Edu.Common.Plugin;
using Edu.Model.ViewModel.Log;
......@@ -696,6 +697,50 @@ namespace Edu.WebApi.Controllers.User
return flag ? ApiResult.Success() : ApiResult.Failed();
}
/// <summary>
/// 同业小程序添加学生名单
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult AppSetStudent()
{
var extModel = new RB_Student_ViewModel()
{
StuId=base.ParmJObj.GetInt("StuId"),
StuName=base.ParmJObj.GetStringValue("StuName"),
StuTel=base.ParmJObj.GetStringValue("StuTel"),
StuIcon=base.ParmJObj.GetStringValue("StuIcon"),
StuSex=base.ParmJObj.GetInt("StuSex"),
StuBirth=base.ParmJObj.GetDateTime("StuBirth"),
ProviceId=base.ParmJObj.GetInt("ProviceId"),
CityId=base.ParmJObj.GetInt("CityId"),
AreaId=base.ParmJObj.GetInt("AreaId"),
Interest=base.ParmJObj.GetInt("Interest"),
JapanBaseInfo=base.ParmJObj.GetInt("JapanBaseInfo"),
StuProfession=base.ParmJObj.GetStringValue("StuProfession"),
StuEducation=(GuestEducationEnum)base.ParmJObj.GetInt("StuEducation"),
StuPurpose=(GuestLearningGoalsEnum)base.ParmJObj.GetInt("StuPurpose"),
StuSource=(OrderSourceEnum)base.ParmJObj.GetInt("StuSource"),
StuAddress=base.ParmJObj.GetStringValue("StuAddress"),
StuContract=base.ParmJObj.GetStringValue("StuContract"),
StuContractMobile=base.ParmJObj.GetStringValue("StuContractMobile"),
StuIDCard=base.ParmJObj.GetStringValue("StuIDCard"),
StuIDCardAddress=base.ParmJObj.GetStringValue("StuIDCardAddress"),
};
var customer = base.AppletCustomerInfo;
extModel.Status = DateStateEnum.Normal;
extModel.StuStatus = 1;
extModel.CreateBy = customer.CustomerId;
extModel.CreateTime = DateTime.Now;
extModel.UpdateBy = customer.CustomerId;
extModel.UpdateTime = DateTime.Now;
extModel.Group_Id = customer.GroupId;
extModel.CustomerId = customer.CustomerId;
extModel.IsDisable = 1;
bool flag = studentModule.SetStudentModule(extModel);
return flag ? ApiResult.Success() : ApiResult.Failed();
}
/// <summary>
/// 获取学生实体
/// </summary>
......
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