ProductionSchedulingMapper.xml 687 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.fjhx.mes.mapper.production.ProductionSchedulingMapper">
  4. <select id="getList" resultType="com.fjhx.mes.entity.production.vo.ProductionSchedulingVo">
  5. select ps.id,
  6. ps.task_id,
  7. ps.processes_id,
  8. ps.scheduling_date,
  9. ps.quantity,
  10. ps.create_user,
  11. ps.create_time,
  12. ps.update_user,
  13. ps.update_time
  14. from production_scheduling ps
  15. ${ew.customSqlSegment}
  16. </select>
  17. </mapper>