ProductionPlanMapper.xml 412 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="org.dromara.productionManagement.mapper.ProductionPlanMapper">
  6. <select id="selectLastId" resultType="java.lang.Long">
  7. SELECT
  8. id
  9. FROM fa_kuyou_plan
  10. ORDER BY id DESC
  11. LIMIT 1
  12. </select>
  13. </mapper>