123456789101112131415161718 |
- <?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.fjhx.mes.mapper.production.ProductionSchedulingMapper">
- <select id="getList" resultType="com.fjhx.mes.entity.production.vo.ProductionSchedulingVo">
- select ps.id,
- ps.task_id,
- ps.processes_id,
- ps.scheduling_date,
- ps.quantity,
- ps.create_user,
- ps.create_time,
- ps.update_user,
- ps.update_time
- from production_scheduling ps
- ${ew.customSqlSegment}
- </select>
- </mapper>
|