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
1a37cad7
Commit
1a37cad7
authored
Dec 01, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
ca7867ee
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
7 deletions
+13
-7
RB_Student.cs
Edu.Model/Entity/User/RB_Student.cs
+1
-1
StudentModule.cs
Edu.Module.User/StudentModule.cs
+0
-1
RB_StudentRepository.cs
Edu.Repository/User/RB_StudentRepository.cs
+4
-0
AppIndexController.cs
Edu.WebApi/Controllers/APP/AppIndexController.cs
+1
-1
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+7
-4
No files found.
Edu.Model/Entity/User/RB_Student.cs
View file @
1a37cad7
...
...
@@ -114,7 +114,7 @@ namespace Edu.Model.Entity.User
/// <summary>
/// 日语基础信息
/// </summary>
public
int
JapanBaseInfo
{
get
;
set
;
}
public
GuestBasicsEnum
JapanBaseInfo
{
get
;
set
;
}
/// <summary>
/// 同业客户编号
...
...
Edu.Module.User/StudentModule.cs
View file @
1a37cad7
...
...
@@ -159,7 +159,6 @@ 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
},
...
...
Edu.Repository/User/RB_StudentRepository.cs
View file @
1a37cad7
...
...
@@ -101,6 +101,10 @@ WHERE 1=1
{
builder
.
AppendFormat
(
" AND t.{0}={1} "
,
nameof
(
RB_Student_ViewModel
.
CustomerId
),
query
.
CustomerId
);
}
if
(
query
.
StuId
>
0
)
{
builder
.
AppendFormat
(
" AND t.{0}={1} "
,
nameof
(
RB_Student_ViewModel
.
StuId
),
query
.
StuId
);
}
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
StuName
))
{
builder
.
AppendFormat
(
" AND t.{0} LIKE @StuName "
,
nameof
(
RB_Student_ViewModel
.
StuName
));
...
...
Edu.WebApi/Controllers/APP/AppIndexController.cs
View file @
1a37cad7
...
...
@@ -42,7 +42,7 @@ namespace Edu.WebApi.Controllers.APP
var
query
=
new
RB_Student_ViewModel
()
{
Interest
=
base
.
ParmJObj
.
GetInt
(
"Interest"
),
JapanBaseInfo
=
base
.
ParmJObj
.
GetInt
(
"JapanBaseInfo"
),
JapanBaseInfo
=
(
GuestBasicsEnum
)
base
.
ParmJObj
.
GetInt
(
"JapanBaseInfo"
),
StuSex
=
base
.
ParmJObj
.
GetInt
(
"StuSex"
),
StuIcon
=
base
.
ParmJObj
.
GetStringValue
(
"StuIcon"
),
Group_Id
=
base
.
AppUserInfo
.
Group_Id
,
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
1a37cad7
...
...
@@ -716,7 +716,7 @@ namespace Edu.WebApi.Controllers.User
CityId
=
base
.
ParmJObj
.
GetInt
(
"CityId"
),
AreaId
=
base
.
ParmJObj
.
GetInt
(
"AreaId"
),
Interest
=
base
.
ParmJObj
.
GetInt
(
"Interest"
),
JapanBaseInfo
=
base
.
ParmJObj
.
GetInt
(
"JapanBaseInfo"
),
JapanBaseInfo
=
(
GuestBasicsEnum
)
base
.
ParmJObj
.
GetInt
(
"JapanBaseInfo"
),
StuProfession
=
base
.
ParmJObj
.
GetStringValue
(
"StuProfession"
),
StuEducation
=(
GuestEducationEnum
)
base
.
ParmJObj
.
GetInt
(
"StuEducation"
),
StuPurpose
=(
GuestLearningGoalsEnum
)
base
.
ParmJObj
.
GetInt
(
"StuPurpose"
),
...
...
@@ -756,11 +756,12 @@ namespace Edu.WebApi.Controllers.User
var
query
=
new
RB_Student_ViewModel
()
{
KeyWords
=
base
.
ParmJObj
.
GetStringValue
(
"KeyWords"
),
StuId
=
base
.
ParmJObj
.
GetInt
(
"StuId"
),
};
var
customer
=
base
.
AppletCustomerInfo
;
query
.
Group_Id
=
customer
.
GroupId
;
//
query.CustomerId = customer.CustomerId;
query
.
Group_Id
=
customer
.
GroupId
;
query
.
CustomerId
=
customer
.
CustomerId
;
var
list
=
studentModule
.
GetStudentPageListModule
(
pageModel
.
PageIndex
,
pageModel
.
PageSize
,
out
long
rowsCount
,
query
);
List
<
object
>
result
=
new
List
<
object
>();
foreach
(
var
item
in
list
)
...
...
@@ -801,6 +802,7 @@ namespace Edu.WebApi.Controllers.User
extModel
.
StuIcon
,
extModel
.
StuSex
,
extModel
.
StuBirth
,
StuBirthStr
=
Common
.
ConvertHelper
.
FormatDate
(
extModel
.
StuBirth
),
extModel
.
ProviceId
,
extModel
.
CityId
,
extModel
.
AreaId
,
...
...
@@ -808,6 +810,7 @@ namespace Edu.WebApi.Controllers.User
extModel
.
StuStatus
,
extModel
.
Interest
,
extModel
.
JapanBaseInfo
,
JapanBaseInfoName
=
extModel
.
JapanBaseInfo
.
ToName
(),
extModel
.
CustomerId
,
extModel
.
StuProfession
,
extModel
.
StuEducation
,
...
...
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