Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
1e38f1c1
Commit
1e38f1c1
authored
Dec 01, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
460e78dd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
108 additions
and
1 deletion
+108
-1
RB_Student.cs
Edu.Model/Entity/User/RB_Student.cs
+50
-0
StudentModule.cs
Edu.Module.User/StudentModule.cs
+13
-1
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+45
-0
No files found.
Edu.Model/Entity/User/RB_Student.cs
View file @
1e38f1c1
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
;
}
}
}
Edu.Module.User/StudentModule.cs
View file @
1e38f1c1
...
...
@@ -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
));
}
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
1e38f1c1
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment