ProductionPlanMapper.xml 385 B

123456789
  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="selectOrderNumberById" resultType="java.lang.String">
  7. SELECT order_num FROM fa_kuyou_plan WHERE id = #{id}
  8. </select>
  9. </mapper>