Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
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
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
c1e2cc31
Commit
c1e2cc31
authored
Nov 22, 2022
by
耿迪迪
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
ssh://111.61.77.35:15/gengdidi/zhengyuan-danger-chemistry-manage
parents
2e748d64
8c703f9c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
14 deletions
+26
-14
TTrainCourse.java
.../src/main/java/com/zehong/system/domain/TTrainCourse.java
+11
-1
TTrainCourseMapper.xml
...m/src/main/resources/mapper/system/TTrainCourseMapper.xml
+14
-11
index.vue
...-web/src/views/educationPlanExam/lessonsProgram/index.vue
+1
-2
No files found.
danger-manage-system/src/main/java/com/zehong/system/domain/TTrainCourse.java
View file @
c1e2cc31
...
@@ -28,6 +28,8 @@ public class TTrainCourse extends BaseEntity
...
@@ -28,6 +28,8 @@ public class TTrainCourse extends BaseEntity
@Excel
(
name
=
"课程类型"
,
readConverterExp
=
"培=训计划"
)
@Excel
(
name
=
"课程类型"
,
readConverterExp
=
"培=训计划"
)
private
Long
courseType
;
private
Long
courseType
;
private
String
planName
;
/** 课程内容 */
/** 课程内容 */
@Excel
(
name
=
"课程内容"
)
@Excel
(
name
=
"课程内容"
)
private
String
courseConent
;
private
String
courseConent
;
...
@@ -65,7 +67,15 @@ public class TTrainCourse extends BaseEntity
...
@@ -65,7 +67,15 @@ public class TTrainCourse extends BaseEntity
@Excel
(
name
=
"0未删除 1已删除"
)
@Excel
(
name
=
"0未删除 1已删除"
)
private
Integer
isDel
;
private
Integer
isDel
;
public
void
setCourseId
(
Long
courseId
)
public
String
getPlanName
()
{
return
planName
;
}
public
void
setPlanName
(
String
planName
)
{
this
.
planName
=
planName
;
}
public
void
setCourseId
(
Long
courseId
)
{
{
this
.
courseId
=
courseId
;
this
.
courseId
=
courseId
;
}
}
...
...
danger-manage-system/src/main/resources/mapper/system/TTrainCourseMapper.xml
View file @
c1e2cc31
...
@@ -8,6 +8,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -8,6 +8,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"courseId"
column=
"course_id"
/>
<result
property=
"courseId"
column=
"course_id"
/>
<result
property=
"courseName"
column=
"course_name"
/>
<result
property=
"courseName"
column=
"course_name"
/>
<result
property=
"courseType"
column=
"course_type"
/>
<result
property=
"courseType"
column=
"course_type"
/>
<result
property=
"planName"
column=
"plan_name"
/>
<result
property=
"courseConent"
column=
"course_conent"
/>
<result
property=
"courseConent"
column=
"course_conent"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"releaseTime"
column=
"release_time"
/>
<result
property=
"releaseTime"
column=
"release_time"
/>
...
@@ -25,18 +26,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -25,18 +26,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql>
</sql>
<select
id=
"selectTTrainCourseList"
parameterType=
"TTrainCourse"
resultMap=
"TTrainCourseResult"
>
<select
id=
"selectTTrainCourseList"
parameterType=
"TTrainCourse"
resultMap=
"TTrainCourseResult"
>
<include
refid=
"selectTTrainCourseVo"
/>
select c.*,p.plan_name from t_train_course c
LEFT JOIN t_train_plan p on p.plan_id = c.course_type
<where>
<where>
<if
test=
"courseName != null and courseName != ''"
>
and course_name like concat('%', #{courseName}, '%')
</if>
<if
test=
"courseName != null and courseName != ''"
>
and c
.c
ourse_name like concat('%', #{courseName}, '%')
</if>
<if
test=
"courseType != null "
>
and course_type = #{courseType}
</if>
<if
test=
"courseType != null "
>
and c
.c
ourse_type = #{courseType}
</if>
<if
test=
"courseConent != null and courseConent != ''"
>
and course_conent = #{courseConent}
</if>
<if
test=
"courseConent != null and courseConent != ''"
>
and c
.c
ourse_conent = #{courseConent}
</if>
<if
test=
"status != null "
>
and status = #{status}
</if>
<if
test=
"status != null "
>
and
c.
status = #{status}
</if>
<if
test=
"enclosure != null and enclosure != ''"
>
and enclosure = #{enclosure}
</if>
<if
test=
"enclosure != null and enclosure != ''"
>
and
c.
enclosure = #{enclosure}
</if>
<if
test=
"video != null and video != ''"
>
and video = #{video}
</if>
<if
test=
"video != null and video != ''"
>
and
c.
video = #{video}
</if>
<if
test=
"qualifiedNum != null "
>
and qualified_num = #{qualifiedNum}
</if>
<if
test=
"qualifiedNum != null "
>
and
c.
qualified_num = #{qualifiedNum}
</if>
<if
test=
"topicNum != null "
>
and topic_num = #{topicNum}
</if>
<if
test=
"topicNum != null "
>
and
c.
topic_num = #{topicNum}
</if>
<if
test=
"createUser != null and createUser != ''"
>
and create_user = #{createUser}
</if>
<if
test=
"createUser != null and createUser != ''"
>
and c
.c
reate_user = #{createUser}
</if>
<if
test=
"isDel != null "
>
and is_del = #{isDel}
</if>
<if
test=
"isDel != null "
>
and
c.
is_del = #{isDel}
</if>
</where>
</where>
</select>
</select>
...
...
danger-manage-web/src/views/educationPlanExam/lessonsProgram/index.vue
View file @
c1e2cc31
...
@@ -73,8 +73,7 @@
...
@@ -73,8 +73,7 @@
<el-table-column
<el-table-column
label=
"课程类别"
label=
"课程类别"
align=
"center"
align=
"center"
prop=
"courseType"
prop=
"planName"
:formatter=
"formatter"
/>
/>
<el-table-column
label=
"课程状态"
align=
"center"
prop=
"status"
>
<el-table-column
label=
"课程状态"
align=
"center"
prop=
"status"
>
<template
v-slot=
"scope"
>
<template
v-slot=
"scope"
>
...
...
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