提交
This commit is contained in:
parent
ad435b8084
commit
5cedacf50c
@ -69,13 +69,16 @@
|
||||
plan_person_num,
|
||||
plan_start_time,
|
||||
plan_end_time,
|
||||
sign_up_start_time,
|
||||
sign_up_end_time,
|
||||
plan_address,
|
||||
charge_person,
|
||||
charge_person_tel,
|
||||
report_type,
|
||||
report_reason
|
||||
report_reason,
|
||||
creator,
|
||||
gmt_create,
|
||||
modifier,
|
||||
gmt_modified,
|
||||
is_delete
|
||||
) VALUES(
|
||||
#{classPlanId},
|
||||
#{orgId},
|
||||
@ -87,13 +90,16 @@
|
||||
#{planPersonNum},
|
||||
#{planStartTime},
|
||||
#{planEndTime},
|
||||
#{signUpStartTime},
|
||||
#{signUpEndTime},
|
||||
#{planAddress},
|
||||
#{chargePerson},
|
||||
#{chargePersonTel},
|
||||
#{reportType},
|
||||
#{reportReason}
|
||||
#{reportReason},
|
||||
#{creator},
|
||||
#{gmtCreate},
|
||||
#{modifier},
|
||||
#{gmtModified},
|
||||
#{isDelete}
|
||||
)
|
||||
</insert>
|
||||
|
||||
@ -414,9 +420,9 @@
|
||||
|
||||
<insert id="saveClassPlanLesson" parameterType="map">
|
||||
INSERT INTO e_class_plan_lesson
|
||||
(class_plan_id,lesson_id,teacher_id,is_delete)
|
||||
(class_plan_id,lesson_id,teacher_id,lesson_start,lesson_end,is_delete)
|
||||
VALUES
|
||||
(#{classPlanId},#{lessonId},#{teacherId},0)
|
||||
(#{classPlanId},#{lessonId},#{teacherId},#{lessonStart},#{lessonEnd},0)
|
||||
</insert>
|
||||
|
||||
<select id="listClassPlanLessons" parameterType="string" resultType="map">
|
||||
|
Loading…
Reference in New Issue
Block a user