From 45fa0764c539a1164affc0937a6870fe988bf2c8 Mon Sep 17 00:00:00 2001
From: lishenao <3065849776@qq.com>
Date: 星期三, 25 六月 2025 14:22:35 +0800
Subject: [PATCH] 包名优化
---
src/main/resources/mapper/inventory/StockOutMapper.xml | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/resources/mapper/inventory/StockOutMapper.xml b/src/main/resources/mapper/inventory/StockOutMapper.xml
index 7215c83..5569d99 100644
--- a/src/main/resources/mapper/inventory/StockOutMapper.xml
+++ b/src/main/resources/mapper/inventory/StockOutMapper.xml
@@ -4,7 +4,7 @@
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.inventory.mapper.StockOutMapper">
- <resultMap id="BaseResultMap" type="inventory.domain.StockOut">
+ <resultMap id="BaseResultMap" type="com.ruoyi.inventory.pojo.StockOut">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="productId" column="product_id" jdbcType="INTEGER"/>
<result property="inboundTime" column="inbound_time" jdbcType="TIMESTAMP"/>
@@ -31,7 +31,7 @@
from stock_out
where id = #{id,jdbcType=INTEGER}
</select>
- <select id="selectAll" resultType="inventory.domain.StockOut">
+ <select id="selectAll" resultType="com.ruoyi.inventory.pojo.StockOut">
select
<include refid="Base_Column_List" />
from stock_out
@@ -42,7 +42,7 @@
where id = #{id,jdbcType=INTEGER}
</delete>
- <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="inventory.domain.StockOut" useGeneratedKeys="true">
+ <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.ruoyi.inventory.pojo.StockOut" useGeneratedKeys="true">
insert into stock_out
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
@@ -71,7 +71,7 @@
<if test="inboundPerson != null">#{inboundPerson,jdbcType=VARCHAR},</if>
</trim>
</insert>
- <update id="updateByPrimaryKeySelective" parameterType="inventory.domain.StockOut">
+ <update id="updateByPrimaryKeySelective" parameterType="com.ruoyi.inventory.pojo.StockOut">
update stock_out
<set>
<if test="productId != null">
--
Gitblit v1.9.3