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
8a08a2af
Commit
8a08a2af
authored
Dec 10, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
1
parents
261d5cf7
4a373c7c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
2 deletions
+37
-2
RB_Visitor_Reserve_Extend.cs
Edu.Model/ViewModel/Reserve/RB_Visitor_Reserve_Extend.cs
+10
-0
RB_Student_ViewModel.cs
Edu.Model/ViewModel/User/RB_Student_ViewModel.cs
+10
-0
CustomerStudentModule.cs
Edu.Module.Customer/CustomerStudentModule.cs
+1
-1
RB_Visitor_ReserveRepository.cs
Edu.Repository/Reserve/RB_Visitor_ReserveRepository.cs
+1
-0
RB_StudentRepository.cs
Edu.Repository/User/RB_StudentRepository.cs
+12
-0
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+3
-1
No files found.
Edu.Model/ViewModel/Reserve/RB_Visitor_Reserve_Extend.cs
View file @
8a08a2af
...
...
@@ -125,5 +125,15 @@ namespace Edu.Model.ViewModel.Reserve
/// 是否查询所有约课(1-是)
/// </summary>
public
int
IsQueryAll
{
get
;
set
;
}
/// <summary>
/// 创建时间字符串
/// </summary>
public
string
CreateTimeStr
{
get
{
return
Common
.
ConvertHelper
.
FormatTimeStr
(
this
.
CreateTime
);
}
}
/// <summary>
/// 创建时间字符串
/// </summary>
public
string
CreateTimeStr2
{
get
{
return
Common
.
ConvertHelper
.
FormatTimeStr2
(
this
.
CreateTime
);
}
}
}
}
Edu.Model/ViewModel/User/RB_Student_ViewModel.cs
View file @
8a08a2af
...
...
@@ -151,5 +151,15 @@ namespace Edu.Model.ViewModel.User
/// 是否查询自己的客户(1-是)
/// </summary>
public
int
IsQueryMyStu
{
get
;
set
;
}
/// <summary>
/// 开始时间
/// </summary>
public
string
StartTime
{
get
;
set
;
}
/// <summary>
/// 结束时间
/// </summary>
public
string
EndTime
{
get
;
set
;
}
}
}
\ No newline at end of file
Edu.Module.Customer/CustomerStudentModule.cs
View file @
8a08a2af
...
...
@@ -137,7 +137,7 @@ namespace Edu.Module.Customer
{
logContent
+=
string
.
Format
(
"反馈信息:由【{0}】=>【{1}】"
,
oldModel
.
Feedback
,
Feedback
);
}
bool
flag
=
student_
Visi
tRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Student_Appointment_Extend
.
Id
),
Id
));
bool
flag
=
student_
Appointmen
tRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Student_Appointment_Extend
.
Id
),
Id
));
student_LogRepository
.
AddStuLogRepository
(
oldModel
.
StuId
,
Common
.
Enum
.
Log
.
StudentLogTypeEnum
.
Appointment
,
logTitle
,
logContent
,
OperateId
);
return
flag
;
}
...
...
Edu.Repository/Reserve/RB_Visitor_ReserveRepository.cs
View file @
8a08a2af
...
...
@@ -84,6 +84,7 @@ WHERE 1=1
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Visitor_Reserve_Extend
.
Visitor_Id
),
query
.
Visitor_Id
);
}
}
builder
.
AppendFormat
(
" ORDER BY A.{0} DESC "
,
nameof
(
RB_Visitor_Reserve_Extend
.
Id
));
return
GetPage
<
RB_Visitor_Reserve_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
...
...
Edu.Repository/User/RB_StudentRepository.cs
View file @
8a08a2af
...
...
@@ -158,6 +158,18 @@ WHERE 1=1
{
builder
.
AppendFormat
(
" AND t.{0}={1} "
,
nameof
(
RB_Student_ViewModel
.
CustomerId
),
query
.
CustomerId
);
}
if
(
query
.
StuStage
>
0
)
{
builder
.
AppendFormat
(
" AND t.{0}={1} "
,
nameof
(
RB_Student_ViewModel
.
StuStage
),
(
int
)
query
.
StuStage
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
StartTime
))
{
builder
.
AppendFormat
(
" AND t.{0}>='{1}' "
,
nameof
(
RB_Student_ViewModel
.
CreateTime
),
query
.
StartTime
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
EndTime
))
{
builder
.
AppendFormat
(
" AND t.{0}<='{1} 23:59:59' "
,
nameof
(
RB_Student_ViewModel
.
CreateTime
),
query
.
EndTime
);
}
}
builder
.
AppendFormat
(
" ORDER BY t.{0} DESC "
,
nameof
(
RB_Student_ViewModel
.
StuId
));
return
GetPage
<
RB_Student_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
8a08a2af
...
...
@@ -658,7 +658,9 @@ namespace Edu.WebApi.Controllers.User
CreateBy
=
base
.
ParmJObj
.
GetInt
(
"CreateBy"
),
IsQueryMyStu
=
base
.
ParmJObj
.
GetInt
(
"IsQueryMyStu"
),
CustomerId
=
base
.
ParmJObj
.
GetInt
(
"CustomerId"
),
StuStage
=
(
StuStageEnum
)
base
.
ParmJObj
.
GetInt
(
"StuStage"
,
0
)
StuStage
=(
StuStageEnum
)
base
.
ParmJObj
.
GetInt
(
"StuStage"
),
StartTime
=
base
.
ParmJObj
.
GetStringValue
(
"StartTime"
),
EndTime
=
base
.
ParmJObj
.
GetStringValue
(
"EndTime"
),
};
if
(
query
.
IsQueryMyStu
==
1
)
{
...
...
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