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
ae3915fb
Commit
ae3915fb
authored
Jul 12, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/education
parents
26a993de
5c380dcc
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
247 additions
and
1782 deletions
+247
-1782
Edu.Cache.csproj.CopyComplete
...che/obj/Debug/netcoreapp3.0/Edu.Cache.csproj.CopyComplete
+0
-0
Edu.Common.deps.json
Edu.Common/bin/Debug/netcoreapp3.0/Edu.Common.deps.json
+0
-1669
RB_Education_Relevance.cs
Edu.Model/Entity/EduTask/RB_Education_Relevance.cs
+8
-3
RB_Flow_AduitInfo_ViewModel.cs
Edu.Model/ViewModel/Flow/RB_Flow_AduitInfo_ViewModel.cs
+5
-0
RB_Account_ViewModel.cs
Edu.Model/ViewModel/User/RB_Account_ViewModel.cs
+5
-0
Edu.Model.csproj.CopyComplete
...del/obj/Debug/netcoreapp3.0/Edu.Model.csproj.CopyComplete
+0
-0
ChangeClassPlanModule.cs
Edu.Module.EduTask/ChangeClassPlanModule.cs
+0
-3
EducationReceiptModule.cs
Edu.Module.EduTask/EducationReceiptModule.cs
+64
-68
Edu.Module.User.csproj.CopyComplete
...j/Debug/netcoreapp3.0/Edu.Module.User.csproj.CopyComplete
+0
-0
RB_Education_ReceiptRepository.cs
Edu.Repository/EduTask/RB_Education_ReceiptRepository.cs
+158
-34
RB_Education_RelevanceRepository.cs
Edu.Repository/EduTask/RB_Education_RelevanceRepository.cs
+1
-1
RB_AccountRepository.cs
Edu.Repository/User/RB_AccountRepository.cs
+4
-0
Edu.Repository.csproj.CopyComplete
...bj/Debug/netcoreapp3.0/Edu.Repository.csproj.CopyComplete
+0
-0
HolidayController.cs
Edu.WebApi/Controllers/Public/HolidayController.cs
+1
-3
education.sln
education.sln
+1
-1
No files found.
Edu.Cache/obj/Debug/netcoreapp3.0/Edu.Cache.csproj.CopyComplete
deleted
100644 → 0
View file @
26a993de
Edu.Common/bin/Debug/netcoreapp3.0/Edu.Common.deps.json
deleted
100644 → 0
View file @
26a993de
This diff is collapsed.
Click to expand it.
Edu.Model/Entity/EduTask/RB_Education_Relevance.cs
View file @
ae3915fb
...
@@ -24,7 +24,7 @@ namespace Edu.Model.Entity.EduTask
...
@@ -24,7 +24,7 @@ namespace Edu.Model.Entity.EduTask
public
int
ConditionId
{
get
;
set
;
}
public
int
ConditionId
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 审核人类型
1主管(指定一级) 2 指定成员 3角色
/// 审核人类型
【1主管(指定一级),2-指定成员,3-指定角色,4-系统角色】
/// </summary>
/// </summary>
public
WFTAuditTypeEnum
AuditType
{
get
;
set
;
}
public
WFTAuditTypeEnum
AuditType
{
get
;
set
;
}
...
@@ -49,7 +49,7 @@ namespace Edu.Model.Entity.EduTask
...
@@ -49,7 +49,7 @@ namespace Edu.Model.Entity.EduTask
public
string
AuditDescription
{
get
;
set
;
}
public
string
AuditDescription
{
get
;
set
;
}
/// <summary>
/// <summary>
///
工作流id
///
审核流程编号
/// </summary>
/// </summary>
public
int
WorkFlowId
{
get
;
set
;
}
public
int
WorkFlowId
{
get
;
set
;
}
...
@@ -79,7 +79,7 @@ namespace Edu.Model.Entity.EduTask
...
@@ -79,7 +79,7 @@ namespace Edu.Model.Entity.EduTask
public
int
SpecialNode
{
get
;
set
;
}
public
int
SpecialNode
{
get
;
set
;
}
/// <summary>
/// <summary>
///
多个
定角色编号
///
指
定角色编号
/// </summary>
/// </summary>
public
string
PostIds
{
get
;
set
;
}
public
string
PostIds
{
get
;
set
;
}
...
@@ -87,5 +87,10 @@ namespace Edu.Model.Entity.EduTask
...
@@ -87,5 +87,10 @@ namespace Edu.Model.Entity.EduTask
/// 指定的人员编号
/// 指定的人员编号
/// </summary>
/// </summary>
public
string
UserIds
{
get
;
set
;
}
public
string
UserIds
{
get
;
set
;
}
/// <summary>
/// 系统角色编号
/// </summary>
public
string
SysPostIds
{
get
;
set
;
}
}
}
}
}
\ No newline at end of file
Edu.Model/ViewModel/Flow/RB_Flow_AduitInfo_ViewModel.cs
View file @
ae3915fb
...
@@ -19,5 +19,10 @@ namespace Edu.Model.ViewModel.Flow
...
@@ -19,5 +19,10 @@ namespace Edu.Model.ViewModel.Flow
/// 流程编号【查询使用】
/// 流程编号【查询使用】
/// </summary>
/// </summary>
public
string
QFlowIds
{
get
;
set
;
}
public
string
QFlowIds
{
get
;
set
;
}
/// <summary>
/// 系统角色对应人员编号【逗号分割】
/// </summary>
public
string
PostUserIds
{
get
;
set
;
}
}
}
}
}
Edu.Model/ViewModel/User/RB_Account_ViewModel.cs
View file @
ae3915fb
...
@@ -68,6 +68,11 @@ namespace Edu.Model.ViewModel.User
...
@@ -68,6 +68,11 @@ namespace Edu.Model.ViewModel.User
/// </summary>
/// </summary>
public
int
Post_Id
{
get
;
set
;
}
public
int
Post_Id
{
get
;
set
;
}
/// <summary>
/// 岗位编号
/// </summary>
public
string
QPostIds
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 部门名称
/// 部门名称
/// </summary>
/// </summary>
...
...
Edu.Model/obj/Debug/netcoreapp3.0/Edu.Model.csproj.CopyComplete
deleted
100644 → 0
View file @
26a993de
Edu.Module.EduTask/ChangeClassPlanModule.cs
View file @
ae3915fb
using
Edu.Model.Entity.EduTask
;
using
Edu.Model.Entity.EduTask
;
using
Edu.Model.ViewModel.EduTask
;
using
Edu.Model.ViewModel.EduTask
;
using
Edu.Repository.EduTask
;
using
Edu.Repository.EduTask
;
using
Edu.Repository.Flow
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System.Text
;
using
VT.FW.AOP.CustomerAttribute
;
using
VT.FW.AOP.CustomerAttribute
;
using
VT.FW.DB
;
using
VT.FW.DB
;
...
...
Edu.Module.EduTask/EducationReceiptModule.cs
View file @
ae3915fb
This diff is collapsed.
Click to expand it.
Edu.Module.User/obj/Debug/netcoreapp3.0/Edu.Module.User.csproj.CopyComplete
deleted
100644 → 0
View file @
26a993de
Edu.Repository/EduTask/RB_Education_ReceiptRepository.cs
View file @
ae3915fb
This diff is collapsed.
Click to expand it.
Edu.Repository/EduTask/RB_Education_RelevanceRepository.cs
View file @
ae3915fb
...
@@ -19,7 +19,7 @@ namespace Edu.Repository.EduTask
...
@@ -19,7 +19,7 @@ namespace Edu.Repository.EduTask
/// </summary>
/// </summary>
/// <param name="query"></param>
/// <param name="query"></param>
/// <returns></returns>
/// <returns></returns>
public
List
<
RB_Education_Relevance_ViewModel
>
Get
StudentBack
RelevanceListRepository
(
RB_Education_Relevance_ViewModel
query
)
public
List
<
RB_Education_Relevance_ViewModel
>
Get
Education
RelevanceListRepository
(
RB_Education_Relevance_ViewModel
query
)
{
{
StringBuilder
builder
=
new
StringBuilder
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
builder
.
AppendFormat
(
@"
...
...
Edu.Repository/User/RB_AccountRepository.cs
View file @
ae3915fb
...
@@ -115,6 +115,10 @@ WHERE 1=1
...
@@ -115,6 +115,10 @@ WHERE 1=1
{
{
where
.
AppendFormat
(
" AND B.{0}={1} "
,
nameof
(
RB_Account_ViewModel
.
Post_Id
),
query
.
Post_Id
);
where
.
AppendFormat
(
" AND B.{0}={1} "
,
nameof
(
RB_Account_ViewModel
.
Post_Id
),
query
.
Post_Id
);
}
}
if
(!
string
.
IsNullOrEmpty
(
query
.
QPostIds
))
{
where
.
AppendFormat
(
" AND B.{0} IN({1}) "
,
nameof
(
RB_Account_ViewModel
.
Post_Id
),
query
.
QPostIds
);
}
if
(
query
.
Dept_Id
>
0
)
if
(
query
.
Dept_Id
>
0
)
{
{
where
.
AppendFormat
(
" AND B.{0}={1} "
,
nameof
(
RB_Account_ViewModel
.
Dept_Id
),
query
.
Dept_Id
);
where
.
AppendFormat
(
" AND B.{0}={1} "
,
nameof
(
RB_Account_ViewModel
.
Dept_Id
),
query
.
Dept_Id
);
...
...
Edu.Repository/obj/Debug/netcoreapp3.0/Edu.Repository.csproj.CopyComplete
deleted
100644 → 0
View file @
26a993de
Edu.WebApi/Controllers/Public/HolidayController.cs
View file @
ae3915fb
...
@@ -160,11 +160,9 @@ namespace Edu.WebApi.Controllers.Public
...
@@ -160,11 +160,9 @@ namespace Edu.WebApi.Controllers.Public
}
}
catch
(
Exception
ex
)
catch
(
Exception
ex
)
{
{
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"GetHolidayList"
);
}
}
List
<
RB_System_Holiday
>
list
=
holidayModule
.
GetPageList
(
pmodel
.
PageIndex
,
pmodel
.
PageSize
,
dmodel
,
out
long
count
);
List
<
RB_System_Holiday
>
list
=
holidayModule
.
GetPageList
(
pmodel
.
PageIndex
,
pmodel
.
PageSize
,
dmodel
,
out
long
count
);
pmodel
.
Count
=
Convert
.
ToInt32
(
count
.
ToString
());
pmodel
.
Count
=
Convert
.
ToInt32
(
count
.
ToString
());
pmodel
.
PageData
=
list
.
Select
(
x
=>
new
pmodel
.
PageData
=
list
.
Select
(
x
=>
new
{
{
...
...
education.sln
View file @
ae3915fb
...
@@ -64,7 +64,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Duty", "Edu.Modu
...
@@ -64,7 +64,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Duty", "Edu.Modu
EndProject
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Advertising", "Edu.Module.Advertising\Edu.Module.Advertising.csproj", "{43408243-8E36-4F9E-84C0-998CE383EC53}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Advertising", "Edu.Module.Advertising\Edu.Module.Advertising.csproj", "{43408243-8E36-4F9E-84C0-998CE383EC53}"
EndProject
EndProject
Project("{
FAE04EC0-301F-11D3-BF4B-00C04F79EFBC
}") = "Edu.Module.EduTask", "Edu.Module.EduTask\Edu.Module.EduTask.csproj", "{FEDB8D19-2C7E-4393-8D91-332256EC89CC}"
Project("{
9A19103F-16F7-4668-BE54-9A1E7A4F7556
}") = "Edu.Module.EduTask", "Edu.Module.EduTask\Edu.Module.EduTask.csproj", "{FEDB8D19-2C7E-4393-8D91-332256EC89CC}"
EndProject
EndProject
Global
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
...
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