<?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="org.jeecg.modules.tms.mapper.PreparationOrderMapper">
|
|
<select id="queryPageList" resultType="org.jeecg.modules.tms.entity.PreparationOrder">
|
SELECT
|
t.id AS id,
|
t.preparation_order_num AS preparationOrderNum,
|
t.part_drawing_no AS partDrawingNo,
|
t.part_name AS partName,
|
t.part_material AS partMaterial,
|
t.production_processes_no AS productionProcessesNo,
|
t.batch_code AS batchCode,
|
t.machining_count AS machiningCount,
|
t.equipment_code AS equipmentCode,
|
t.nc_name AS ncName,
|
t.outbound_quantity AS outboundQuantity,
|
t.order_status AS orderStatus,
|
t.outbound_time AS outboundTime,
|
t.remark AS remark,
|
t.tenant_id AS tenantId,
|
t.create_by AS createBy,
|
t.create_time AS createTime,
|
t.update_by AS updateBy,
|
t.update_time AS updateTime
|
FROM tms_preparation_order t
|
${ew.customSqlSegment}
|
</select>
|
</mapper>
|