forked from liweijie/education
20 lines
683 B
XML
20 lines
683 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.roomroot.jwgl.mapper.QJKTBMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.roomroot.jwgl.entity.QJKTB">
|
|
<result column="编号" property="bh" />
|
|
<result column="请假编号" property="qjbh" />
|
|
<result column="实施_课堂编号" property="ssktbh" />
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
编号, 请假编号, 实施_课堂编号
|
|
</sql>
|
|
|
|
<delete id="deleteByQjbh">
|
|
DELETE FROM 请假课堂表
|
|
WHERE 请假编号 = #{qjbh}
|
|
</delete>
|
|
|
|
</mapper> |