2024-12-18 08:55:48 +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">
|
|
|
|
|
|
|
|
|
|
<mapper namespace="com.electromagnetic.industry.software.manage.mapper.EdFileInfoMapper">
|
|
|
|
|
|
|
|
|
|
<select id="maxPrjId" resultType="java.lang.String">
|
2024-12-18 17:53:43 +08:00
|
|
|
select max(id)
|
|
|
|
|
from ed_file_info
|
2025-01-07 16:18:30 +08:00
|
|
|
where prj_dir = true
|
2024-12-18 08:55:48 +08:00
|
|
|
</select>
|
|
|
|
|
</mapper>
|