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