chore: initial commit from klp-oa @ 0.8.3, renamed to fad-l3

This commit is contained in:
2026-06-08 15:31:31 +08:00
commit 5cd31efef1
4292 changed files with 581410 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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.klp.aps.mapper.ApsShiftTemplateMapper">
<select id="selectByShiftCode" resultType="com.klp.aps.domain.entity.ApsShiftTemplateEntity">
SELECT *
FROM wms_shift_template
WHERE shift_code = #{shiftCode}
AND del_flag = 0
LIMIT 1
</select>
</mapper>