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
28399333
Commit
28399333
authored
Jan 05, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
c2b8a9d2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
2 deletions
+36
-2
RB_Student.cs
Edu.Model/Entity/User/RB_Student.cs
+5
-0
StudentModule.cs
Edu.Module.User/StudentModule.cs
+13
-0
RB_Order_GuestRepository.cs
Edu.Repository/Sell/RB_Order_GuestRepository.cs
+1
-1
RB_StudentRepository.cs
Edu.Repository/User/RB_StudentRepository.cs
+14
-1
LoginController.cs
Edu.WebApi/Controllers/User/LoginController.cs
+3
-0
No files found.
Edu.Model/Entity/User/RB_Student.cs
View file @
28399333
...
@@ -211,5 +211,10 @@ namespace Edu.Model.Entity.User
...
@@ -211,5 +211,10 @@ namespace Edu.Model.Entity.User
/// 客户需求
/// 客户需求
/// </summary>
/// </summary>
public
int
StuNeeds
{
get
;
set
;
}
public
int
StuNeeds
{
get
;
set
;
}
/// <summary>
/// 学员真实电话号码
/// </summary>
public
string
StuRealMobile
{
get
;
set
;
}
}
}
}
}
Edu.Module.User/StudentModule.cs
View file @
28399333
...
@@ -771,5 +771,18 @@ namespace Edu.Module.User
...
@@ -771,5 +771,18 @@ namespace Edu.Module.User
}
}
#
endregion
#
endregion
public
void
UpdateTel
()
{
var
list
=
studentRepository
.
GetStudentListRepository
(
new
RB_Student_ViewModel
());
foreach
(
var
item
in
list
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Student_ViewModel
.
StuTel
),
Common
.
Plugin
.
StringHelper
.
ReplaceMobile
(
item
.
StuTel
)
}
};
studentRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Student_ViewModel
.
StuId
),
item
.
StuId
));
}
}
}
}
}
}
Edu.Repository/Sell/RB_Order_GuestRepository.cs
View file @
28399333
...
@@ -814,7 +814,7 @@ FROM RB_Order_Guest AS A
...
@@ -814,7 +814,7 @@ FROM RB_Order_Guest AS A
) AS gc on gc.OrderGuestId=a.Id
) AS gc on gc.OrderGuestId=a.Id
where A.Id =
{
guestId
}
where A.Id =
{
guestId
}
"
;
"
;
return
Get
<
RB_Order_Guest_
ViewModel
>(
sql
).
FirstOrDefault
();
return
Get
<
RB_Order_Guest_
Extend
>(
sql
).
FirstOrDefault
();
}
}
}
}
...
...
Edu.Repository/User/RB_StudentRepository.cs
View file @
28399333
...
@@ -547,11 +547,24 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
...
@@ -547,11 +547,24 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
var
accountModel
=
accountRepository
.
GetAccountListRepository
(
new
RB_Account_ViewModel
()
{
Group_Id
=
model
.
Group_Id
,
AccountType
=
Common
.
Enum
.
User
.
AccountTypeEnum
.
Student
,
AccountId
=
model
.
StuId
}).
FirstOrDefault
();
var
accountModel
=
accountRepository
.
GetAccountListRepository
(
new
RB_Account_ViewModel
()
{
Group_Id
=
model
.
Group_Id
,
AccountType
=
Common
.
Enum
.
User
.
AccountTypeEnum
.
Student
,
AccountId
=
model
.
StuId
}).
FirstOrDefault
();
if
(
accountModel
==
null
)
if
(
accountModel
==
null
)
{
{
string
account
=
""
;
if
(!
string
.
IsNullOrEmpty
(
model
.
WeChatNo
))
{
account
=
model
.
WeChatNo
;
}
if
(!
string
.
IsNullOrEmpty
(
model
.
QQ
))
{
account
=
model
.
QQ
;
}
if
(!
string
.
IsNullOrEmpty
(
model
.
StuTel
))
{
account
=
model
.
StuTel
;
}
//创建学生账号
//创建学生账号
model
.
Account_Id
=
accountRepository
.
Insert
(
new
RB_Account
()
model
.
Account_Id
=
accountRepository
.
Insert
(
new
RB_Account
()
{
{
Id
=
0
,
Id
=
0
,
Account
=
model
.
StuTel
,
Account
=
account
,
AccountId
=
model
.
StuId
,
AccountId
=
model
.
StuId
,
AccountType
=
Common
.
Enum
.
User
.
AccountTypeEnum
.
Student
,
AccountType
=
Common
.
Enum
.
User
.
AccountTypeEnum
.
Student
,
AnnualLeaveDay
=
0
,
AnnualLeaveDay
=
0
,
...
...
Edu.WebApi/Controllers/User/LoginController.cs
View file @
28399333
...
@@ -53,11 +53,14 @@ namespace Edu.WebApi.Controllers.User
...
@@ -53,11 +53,14 @@ namespace Edu.WebApi.Controllers.User
private
readonly
EmployeeBonusModule
employeeBonusModule
=
new
EmployeeBonusModule
();
private
readonly
EmployeeBonusModule
employeeBonusModule
=
new
EmployeeBonusModule
();
private
readonly
StudentModule
studentModule
=
new
StudentModule
();
[
HttpGet
]
[
HttpGet
]
[
HttpPost
]
[
HttpPost
]
[
AllowAnonymous
]
[
AllowAnonymous
]
public
ApiResult
Test
()
public
ApiResult
Test
()
{
{
studentModule
.
UpdateTel
();
return
ApiResult
.
Success
();
return
ApiResult
.
Success
();
}
}
...
...
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