Commit e23f395d authored by 黄奎's avatar 黄奎

实体修改

parent 49822659
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.BackClass
{ {
/// <summary> /// <summary>
/// 学员退课单据实体类 /// 学员退课单据实体类
...@@ -105,5 +105,15 @@ namespace Edu.Model.Entity.Course ...@@ -105,5 +105,15 @@ namespace Edu.Model.Entity.Course
/// 实体退款金额 /// 实体退款金额
/// </summary> /// </summary>
public decimal RealityBackMoney { get; set; } public decimal RealityBackMoney { get; set; }
/// <summary>
/// 退还账号名
/// </summary>
public string BackAccountName { get; set; }
/// <summary>
/// 退还账号
/// </summary>
public string BackAccount { get; set; }
} }
} }
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.Entity.Contract
{
/// <summary>
/// 学员退课协议实体类
/// </summary>
public class RB_BackClass_Protocol
{
/// <summary>
/// 主键编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 退课编号(退课表主键编号)
/// </summary>
public int? BackId { get; set; }
/// <summary>
/// 合约编号
/// </summary>
public string ProtocolNum { get; set; }
/// <summary>
/// 甲方
/// </summary>
public string PartyAName { get; set; }
/// <summary>
/// 甲方家长/监护人
/// </summary>
public string PartyAGuardian { get; set; }
/// <summary>
/// 乙方
/// </summary>
public string PartyBName { get; set; }
/// <summary>
/// 乙方法定代表人
/// </summary>
public string PartyBLegal { get; set; }
/// <summary>
/// 签订日期
/// </summary>
public DateTime? SignDate { get; set; }
/// <summary>
/// 原协议报名人员
/// </summary>
public string OldSaleMan { get; set; }
/// <summary>
/// 原报名项目
/// </summary>
public string OldCourseName { get; set; }
/// <summary>
/// 原报名项目原价
/// </summary>
public decimal? OldSellPrice { get; set; }
/// <summary>
/// 原报名项目优惠价
/// </summary>
public decimal? OldDiscountMoney { get; set; }
/// <summary>
/// 原报名项目已收学费
/// </summary>
public decimal? OldIncome { get; set; }
/// <summary>
/// 原收据单号
/// </summary>
public string OldFinaceNum { get; set; }
/// <summary>
/// 原收款人
/// </summary>
public string OldReceiveMan { get; set; }
/// <summary>
/// 总课时
/// </summary>
public int? TotalClassHours { get; set; }
/// <summary>
/// 完成课时
/// </summary>
public int? CompleteHours { get; set; }
/// <summary>
/// 剩余课时
/// </summary>
public int? SurplusHours { get; set; }
/// <summary>
/// 退款金额
/// </summary>
public decimal? BackMoney { get; set; }
/// <summary>
/// 声明
/// </summary>
public string StateMent { get; set; }
/// <summary>
/// 甲方签字
/// </summary>
public string PartyASign { get; set; }
/// <summary>
/// 甲方签字时间
/// </summary>
public DateTime? PartyASignDate { get; set; }
/// <summary>
/// 乙方签字
/// </summary>
public string PartyBSign { get; set; }
/// <summary>
/// 乙方签字时间
/// </summary>
public DateTime? PartyBSignDate { get; set; }
/// <summary>
/// 审核状态(跟随退课单据)
/// </summary>
public int? AuditStatus { get; set; }
}
}
...@@ -3,7 +3,7 @@ using Edu.Common.Enum.Course; ...@@ -3,7 +3,7 @@ using Edu.Common.Enum.Course;
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级实体类 /// 班级实体类
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级学员签到实体类 /// 班级学员签到实体类
......
...@@ -3,7 +3,7 @@ using System.Collections.Generic; ...@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级基础配置实体类 /// 班级基础配置实体类
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级关联课程实体类 /// 班级关联课程实体类
......
using System; using System;
using System.Collections.Generic;
using System.Text;
using Edu.Common.Enum; using Edu.Common.Enum;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级实体类 /// 班级财务单据实体类
/// </summary> /// </summary>
[Serializable] [Serializable]
[DB(ConnectionName = "DefaultConnection")] [DB(ConnectionName = "DefaultConnection")]
public class RB_Class_Finance public class RB_Class_Finance
{ {
/// <summary> /// <summary>
/// 编号 /// 编号
/// </summary> /// </summary>
public int FinanceId { get; set; } public int FinanceId { get; set; }
/// <summary> /// <summary>
/// 班级编号 /// 班级编号
/// </summary> /// </summary>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using Edu.Common.Enum; using Edu.Common.Enum;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级备案评论实体类 /// 班级备案评论实体类
......
...@@ -4,7 +4,7 @@ using System.Text; ...@@ -4,7 +4,7 @@ using System.Text;
using Edu.Common.Enum; using Edu.Common.Enum;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 老师教案 /// 老师教案
......
...@@ -4,7 +4,7 @@ using System.Text; ...@@ -4,7 +4,7 @@ using System.Text;
using Edu.Common.Enum; using Edu.Common.Enum;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 老师教案详细内容 /// 老师教案详细内容
......
...@@ -4,7 +4,7 @@ using System.Text; ...@@ -4,7 +4,7 @@ using System.Text;
using Edu.Common.Enum; using Edu.Common.Enum;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 老师教案指导项目 /// 老师教案指导项目
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级上课计划实体类 /// 班级上课计划实体类
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 教室管理实体类 /// 教室管理实体类
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 教室异常管理实体类 /// 教室异常管理实体类
......
...@@ -3,7 +3,7 @@ using System.Collections.Generic; ...@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级阶梯价实体类 /// 班级阶梯价实体类
......
using System; using System;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级上课时间实体类 /// 班级上课时间实体类
......
using System; using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 未知的用户信息 /// 未知的用户信息
......
...@@ -4,7 +4,7 @@ using System.Collections.Generic; ...@@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using VT.FW.DB; using VT.FW.DB;
namespace Edu.Model.Entity.Course namespace Edu.Model.Entity.Grade
{ {
/// <summary> /// <summary>
/// 班级类型费用设置实体类 /// 班级类型费用设置实体类
......
using Edu.Common.Enum.Course; using Edu.Model.Entity.BackClass;
using Edu.Model.Entity.Course;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.BackClass
{ {
/// <summary> /// <summary>
/// 学员退课单据视图实体类 /// 学员退课单据视图实体类
......
...@@ -3,6 +3,7 @@ using System.Collections.Generic; ...@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using Edu.Common.Enum.Sale; using Edu.Common.Enum.Sale;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using System; using System.Collections.Generic;
using System.Collections.Generic; using Edu.Model.Entity.Grade;
using System.Text;
using Edu.Model.Entity.Course;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using System.Collections.Generic; using System.Collections.Generic;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using System.Collections.Generic; using System.Collections.Generic;
using Edu.Common.Plugin; using Edu.Common.Plugin;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Grade;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Grade;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
/// <summary>
/// 未知的用户信息视图实体类
/// </summary>
public class RB_Class_Time_UnKnowUser_ViewModel:RB_Class_Time_UnKnowUser public class RB_Class_Time_UnKnowUser_ViewModel:RB_Class_Time_UnKnowUser
{ {
/// <summary> /// <summary>
......
using System.Collections.Generic; using System.Collections.Generic;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Grade;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
......
using System; using Edu.Model.Entity.Grade;
using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
...@@ -7,7 +8,7 @@ namespace Edu.Model.ViewModel.Course ...@@ -7,7 +8,7 @@ namespace Edu.Model.ViewModel.Course
/// 班级实体类 /// 班级实体类
/// </summary> /// </summary>
[Serializable] [Serializable]
public class RB_Class_ViewModel : Model.Entity.Course.RB_Class public class RB_Class_ViewModel : RB_Class
{ {
/// <summary> /// <summary>
/// 创建人 /// 创建人
......
...@@ -6,7 +6,7 @@ using Edu.Common.Enum.Course; ...@@ -6,7 +6,7 @@ using Edu.Common.Enum.Course;
using Edu.Common.Plugin; using Edu.Common.Plugin;
using Edu.Model.CacheModel; using Edu.Model.CacheModel;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
//using Edu.Model.ViewModel.Mall; //using Edu.Model.ViewModel.Mall;
using Edu.Model.ViewModel.Reserve; using Edu.Model.ViewModel.Reserve;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using Edu.Repository.Course; using Edu.Repository.Course;
using System; using System;
...@@ -153,7 +154,7 @@ namespace Edu.Module.Course ...@@ -153,7 +154,7 @@ namespace Edu.Module.Course
/// </summary> /// </summary>
/// <param name="Id"></param> /// <param name="Id"></param>
/// <returns></returns> /// <returns></returns>
public Model.Entity.Course.RB_Class_RoomUseLog GetRoomUseLogEntity(object Id) public RB_Class_RoomUseLog GetRoomUseLogEntity(object Id)
{ {
return class_RoomUseLogRepository.GetEntity(Id); return class_RoomUseLogRepository.GetEntity(Id);
} }
......
...@@ -9,6 +9,7 @@ using Edu.Model.Entity.EduTask; ...@@ -9,6 +9,7 @@ using Edu.Model.Entity.EduTask;
using Edu.Repository.EduTask; using Edu.Repository.EduTask;
using Edu.Common.Enum.User; using Edu.Common.Enum.User;
using Edu.Common.Enum.Sale; using Edu.Common.Enum.Sale;
using Edu.Model.ViewModel.BackClass;
namespace Edu.Module.Course namespace Edu.Module.Course
{ {
...@@ -48,7 +49,7 @@ namespace Edu.Module.Course ...@@ -48,7 +49,7 @@ namespace Edu.Module.Course
/// <param name="userinfo"></param> /// <param name="userinfo"></param>
/// <param name="message"></param> /// <param name="message"></param>
/// <returns></returns> /// <returns></returns>
public virtual bool CreateBackClassApplyModule(int GuestId, int OrderId, string reason, UserInfo userinfo,string receiptFile, out string message) public virtual bool CreateBackClassApplyModule(int GuestId, int OrderId, string reason, UserInfo userinfo,string receiptFile,string BackAccountName,string BackAccount, out string message)
{ {
bool flag; bool flag;
message = ""; message = "";
...@@ -123,6 +124,8 @@ namespace Edu.Module.Course ...@@ -123,6 +124,8 @@ namespace Edu.Module.Course
OrderId = OrderId, OrderId = OrderId,
ApplyReason = reason, ApplyReason = reason,
FlowId = Common.Config.BackClassFlowId, FlowId = Common.Config.BackClassFlowId,
BackAccountName=BackAccountName,
BackAccount=BackAccount,
}; };
var newBackId = student_BackClassRepository.Insert(backClassModel); var newBackId = student_BackClassRepository.Insert(backClassModel);
backClassModel.BackId = newBackId; backClassModel.BackId = newBackId;
......
...@@ -5,6 +5,7 @@ using Edu.Common.Enum.Course; ...@@ -5,6 +5,7 @@ using Edu.Common.Enum.Course;
using Edu.Common.Enum.User; using Edu.Common.Enum.User;
using Edu.Common.Plugin; using Edu.Common.Plugin;
using Edu.Model.CacheModel; using Edu.Model.CacheModel;
using Edu.Model.Entity.BackClass;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using Edu.Model.ViewModel.User; using Edu.Model.ViewModel.User;
......
...@@ -7,6 +7,7 @@ using Edu.Common.Plugin; ...@@ -7,6 +7,7 @@ using Edu.Common.Plugin;
using Edu.Model.CacheModel; using Edu.Model.CacheModel;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.EduTask; using Edu.Model.Entity.EduTask;
using Edu.Model.ViewModel.BackClass;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using Edu.Model.ViewModel.EduTask; using Edu.Model.ViewModel.EduTask;
using Edu.Model.ViewModel.User; using Edu.Model.ViewModel.User;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using Edu.Model.ViewModel.User; using Edu.Model.ViewModel.User;
using System; using System;
......
...@@ -3,6 +3,7 @@ using System.Collections.Generic; ...@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.Entity.User; using Edu.Model.Entity.User;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using VT.FW.DB.Dapper; using VT.FW.DB.Dapper;
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System.Text; using System.Text;
using System.Linq; using System.Linq;
using Edu.Model.Entity.Grade;
namespace Edu.Repository.Course namespace Edu.Repository.Course
{ {
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
...@@ -4,6 +4,7 @@ using System.Linq; ...@@ -4,6 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
namespace Edu.Repository.Course namespace Edu.Repository.Course
......
...@@ -3,6 +3,7 @@ using System.Collections.Generic; ...@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
namespace Edu.Repository.Course namespace Edu.Repository.Course
......
...@@ -3,6 +3,7 @@ using System.Collections.Generic; ...@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
namespace Edu.Repository.Course namespace Edu.Repository.Course
......
...@@ -3,6 +3,7 @@ using System.Collections.Generic; ...@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
namespace Edu.Repository.Course namespace Edu.Repository.Course
......
...@@ -3,6 +3,7 @@ using System.Collections.Generic; ...@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
namespace Edu.Repository.Course namespace Edu.Repository.Course
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Common.Enum.Course; using Edu.Common.Enum.Course;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using Edu.Model.ViewModel.Reserve; using Edu.Model.ViewModel.Reserve;
using System; using System;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
...@@ -4,6 +4,7 @@ using System.Linq; ...@@ -4,6 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using VT.FW.DB.Dapper; using VT.FW.DB.Dapper;
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Common.Enum.Sale; using Edu.Common.Enum.Sale;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
......
using Edu.Common.Enum.Course; using Edu.Common.Enum.Course;
using Edu.Model.Entity.BackClass;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.EduTask; using Edu.Model.Entity.EduTask;
using Edu.Model.ViewModel.BackClass;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using Edu.Model.ViewModel.EduTask; using Edu.Model.ViewModel.EduTask;
using Edu.Repository.EduTask; using Edu.Repository.EduTask;
......
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.Course; using Edu.Model.Entity.Course;
using Edu.Model.Entity.Grade;
using Edu.Model.Entity.User; using Edu.Model.Entity.User;
using Edu.Model.ViewModel.Course; using Edu.Model.ViewModel.Course;
using System; using System;
......
...@@ -2145,8 +2145,10 @@ namespace Edu.WebApi.Controllers.Course ...@@ -2145,8 +2145,10 @@ namespace Edu.WebApi.Controllers.Course
{ {
Common.Plugin.LogHelper.Write(ex, "BackClassApply"); Common.Plugin.LogHelper.Write(ex, "BackClassApply");
} }
var BackAccountName = base.ParmJObj.GetStringValue("BackAccountName");
var BackAccount = base.ParmJObj.GetStringValue("BackAccount");
bool flag = orderModule.CreateBackClassApplyModule(GuestId, OrderId, applyReason, base.UserInfo, receiptFile, out string message); bool flag = orderModule.CreateBackClassApplyModule(GuestId, OrderId, applyReason, base.UserInfo, receiptFile, BackAccountName, BackAccount, out string message);
return flag ? ApiResult.Success(message: message) : ApiResult.Failed(message: message); return flag ? ApiResult.Success(message: message) : ApiResult.Failed(message: message);
} }
#endregion #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