Files
huachuang/nl-module-wms/nl-module-wms-server/src/main/resources/mapper/moveinvdtl/CuttingProcessService.xml

18 lines
614 B
XML
Raw Normal View History

<?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="cn.code.nl.module.wms.dal.mysql.moveinvdtl.MoveInvDtlMapper">
<select id="selectByMoveinvId"
resultType="cn.code.nl.module.wms.dal.dataobject.moveinvdtl.MoveInvDtlDO">
SELECT *
FROM wms_moveinvdtl
WHERE moveinv_id = #{moveinvId}
ORDER BY seq_no
</select>
<delete id="deleteByMoveinvId">
DELETE FROM wms_moveinvdtl WHERE moveinv_id = #{moveinvId}
</delete>
</mapper>