31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?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.iocoder.yudao.module.stockOperate.mapper.DlRepairSoiMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="cn.iocoder.yudao.module.stockOperate.entity.DlRepairSoi">
|
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
|
<result property="soId" column="so_id" jdbcType="VARCHAR"/>
|
|
<result property="goodsId" column="goods_id" jdbcType="VARCHAR"/>
|
|
<result property="goodsType" column="goods_type" jdbcType="VARCHAR"/>
|
|
<result property="wareId" column="ware_id" jdbcType="VARCHAR"/>
|
|
<result property="goodsCount" column="goods_count" jdbcType="INTEGER"/>
|
|
<result property="goodsPrice" column="goods_price" jdbcType="DECIMAL"/>
|
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_SQL">
|
|
select id,
|
|
so_id,
|
|
goods_id,
|
|
goods_type,
|
|
ware_id,
|
|
goods_count,
|
|
goods_price,
|
|
remark
|
|
from dl_repair_soi soi
|
|
where soi.deleted = '0'
|
|
</sql>
|
|
</mapper>
|