Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqi
dd_school
Commits
e9ea3209
Commit
e9ea3209
authored
Sep 03, 2024
by
wangjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-09-03
parent
7ad8e234
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
1 deletions
+39
-1
smart-campus/src/main/java/yangtz/cs/liu/campus/domain/schoolNewTeacherDzdn/SchoolXteachingAchievements.java
+13
-0
smart-campus/src/main/java/yangtz/cs/liu/campus/vo/schoolNewTeacherDzdn/SchoolXteachingAchievementsVo.java
+14
-0
smart-campus/src/main/resources/file/教学成绩导入模板.xlsx
+0
-0
smart-campus/src/main/resources/mapper/schoolNewTeacherDzdn/SchoolXteachingAchievementsMapper.xml
+12
-1
No files found.
smart-campus/src/main/java/yangtz/cs/liu/campus/domain/schoolNewTeacherDzdn/SchoolXteachingAchievements.java
View file @
e9ea3209
...
...
@@ -85,6 +85,19 @@ public class SchoolXteachingAchievements
@Excel
(
name
=
"考核分"
)
private
BigDecimal
assessmentScore
;
/** 优生增量 */
@Excel
(
name
=
"优生增量"
)
private
BigDecimal
yszl
;
/** 常规增量 */
@Excel
(
name
=
"常规增量"
)
private
BigDecimal
cgzl
;
/** 创建者 */
private
String
createBy
;
...
...
smart-campus/src/main/java/yangtz/cs/liu/campus/vo/schoolNewTeacherDzdn/SchoolXteachingAchievementsVo.java
View file @
e9ea3209
...
...
@@ -79,6 +79,20 @@ public class SchoolXteachingAchievementsVo {
@Excel
(
name
=
"考核分"
)
private
BigDecimal
assessmentScore
;
/** 优生增量 */
@Excel
(
name
=
"优生增量"
)
private
BigDecimal
yszl
;
/** 常规增量 */
@Excel
(
name
=
"常规增量"
)
private
BigDecimal
cgzl
;
/** 创建者 */
private
String
createBy
;
...
...
smart-campus/src/main/resources/file/教学成绩导入模板.xlsx
View file @
e9ea3209
No preview for this file type
smart-campus/src/main/resources/mapper/schoolNewTeacherDzdn/SchoolXteachingAchievementsMapper.xml
View file @
e9ea3209
...
...
@@ -25,10 +25,15 @@
<result
property=
"updateBy"
column=
"update_by"
/>
<result
property=
"updateTime"
column=
"update_time"
/>
<result
property=
"delFlag"
column=
"del_flag"
/>
<result
property=
"yszl"
column=
"yszl"
/>
<result
property=
"cgzl"
column=
"cgzl"
/>
</resultMap>
<sql
id=
"selectSchoolXteachingAchievementsVo"
>
select id, school_year, semester, exam_time, exam_type, year, grade, user_id, user_name, id_card, sub, class_name, class_type, assessment_score, remark, create_by, create_time, update_by, update_time, del_flag from school_xteaching_achievements
select id, school_year, semester, exam_time, exam_type, year, grade, user_id, user_name, id_card, sub,
class_name, class_type, assessment_score, remark, create_by, create_time, update_by, update_time, del_flag,
yszl, cgzl
from school_xteaching_achievements
</sql>
<select
id=
"selectSchoolXteachingAchievementsList"
parameterType=
"yangtz.cs.liu.campus.vo.schoolNewTeacherDzdn.SchoolXteachingAchievementsVo"
resultMap=
"SchoolXteachingAchievementsResult"
>
...
...
@@ -87,6 +92,8 @@
<if
test=
"updateBy != null"
>
update_by,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
<if
test=
"delFlag != null and delFlag != ''"
>
del_flag,
</if>
<if
test=
"yszl != null and yszl != ''"
>
yszl,
</if>
<if
test=
"cgzl != null and cgzl != ''"
>
cgzl,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"schoolYear != null and schoolYear != ''"
>
#{schoolYear},
</if>
...
...
@@ -108,6 +115,8 @@
<if
test=
"updateBy != null"
>
#{updateBy},
</if>
<if
test=
"updateTime != null"
>
#{updateTime},
</if>
<if
test=
"delFlag != null and delFlag != ''"
>
#{delFlag},
</if>
<if
test=
"yszl != null and yszl != ''"
>
#{yszl},
</if>
<if
test=
"cgzl != null and cgzl != ''"
>
#{cgzl},
</if>
</trim>
</insert>
...
...
@@ -133,6 +142,8 @@
<if
test=
"updateBy != null"
>
update_by = #{updateBy},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime},
</if>
<if
test=
"delFlag != null and delFlag != ''"
>
del_flag = #{delFlag},
</if>
<if
test=
"yszl != null and yszl != ''"
>
yszl = #{yszl},
</if>
<if
test=
"cgzl != null and cgzl != ''"
>
cgzl = #{cgzl},
</if>
</trim>
where id = #{id}
</update>
...
...
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