2026-06-08 15:31:31 +08:00
|
|
|
<?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">
|
2026-06-08 15:42:29 +08:00
|
|
|
<mapper namespace="com.fad.aps.mapper.ApsShiftTemplateMapper">
|
2026-06-08 15:31:31 +08:00
|
|
|
|
2026-06-08 15:42:29 +08:00
|
|
|
<select id="selectByShiftCode" resultType="com.fad.aps.domain.entity.ApsShiftTemplateEntity">
|
2026-06-08 15:31:31 +08:00
|
|
|
SELECT *
|
|
|
|
|
FROM wms_shift_template
|
|
|
|
|
WHERE shift_code = #{shiftCode}
|
|
|
|
|
AND del_flag = 0
|
|
|
|
|
LIMIT 1
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
</mapper>
|