|
@@ -5,33 +5,35 @@
|
|
|
<mapper namespace="com.ruoyi.basicData.mapper.TGoodsMapper">
|
|
|
|
|
|
<resultMap type="TGoods" id="TGoodsResult">
|
|
|
- <result property="fId" column="f_id"/>
|
|
|
- <result property="fTypeid" column="f_typeid"/>
|
|
|
- <result property="fNo" column="f_no"/>
|
|
|
- <result property="fName" column="f_name"/>
|
|
|
- <result property="fEnam" column="f_enam"/>
|
|
|
- <result property="fSpecs" column="f_specs"/>
|
|
|
- <result property="fPackagespecs" column="f_packagespecs"/>
|
|
|
- <result property="fColor" column="f_color"/>
|
|
|
- <result property="fHscode" column="f_hscode"/>
|
|
|
- <result property="fPackageid" column="f_packageid"/>
|
|
|
- <result property="fStatus" column="f_status"/>
|
|
|
- <result property="delFlag" column="del_flag"/>
|
|
|
- <result property="createBy" column="create_by"/>
|
|
|
- <result property="createTime" column="create_time"/>
|
|
|
- <result property="updateBy" column="update_by"/>
|
|
|
- <result property="updateTime" column="update_time"/>
|
|
|
- <result property="remark" column="remark"/>
|
|
|
+ <result property="fId" column="f_id" />
|
|
|
+ <result property="fTypeid" column="f_typeid" />
|
|
|
+ <result property="fNo" column="f_no" />
|
|
|
+ <result property="fName" column="f_name" />
|
|
|
+ <result property="fEnam" column="f_enam" />
|
|
|
+ <result property="fSpecs" column="f_specs" />
|
|
|
+ <result property="fPackagespecs" column="f_packagespecs" />
|
|
|
+ <result property="fColor" column="f_color" />
|
|
|
+ <result property="fHscode" column="f_hscode" />
|
|
|
+ <result property="fPackageid" column="f_packageid" />
|
|
|
+ <result property="ifCntrno" column="if_cntrno" />
|
|
|
+ <result property="fStatus" column="f_status" />
|
|
|
+ <result property="delFlag" column="del_flag" />
|
|
|
+ <result property="createBy" column="create_by" />
|
|
|
+ <result property="createTime" column="create_time" />
|
|
|
+ <result property="updateBy" column="update_by" />
|
|
|
+ <result property="updateTime" column="update_time" />
|
|
|
+ <result property="remark" column="remark" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTGoodsVo">
|
|
|
- select f_id, f_typeid, f_no, f_name, f_enam, f_specs, f_packagespecs, f_color, f_hscode, f_packageid, f_status, del_flag, create_by, create_time, update_by, update_time, remark from t_goods
|
|
|
+ select f_id, f_typeid, f_no, f_name, f_enam, f_specs, f_packagespecs, f_color, f_hscode, f_packageid, if_cntrno, f_status, del_flag, create_by, create_time, update_by, update_time, remark from t_goods
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTGoodsList" parameterType="TGoods" resultMap="TGoodsResult">
|
|
|
<include refid="selectTGoodsVo"/>
|
|
|
<where>
|
|
|
<if test="fTypeid != null and fTypeid != ''">and f_typeid = #{fTypeid}</if>
|
|
|
+ <if test="ifCntrno != null and ifCntrno != ''">and if_cntrno = #{ifCntrno}</if>
|
|
|
<if test="fNo != null and fNo != ''">and f_no like concat('%', #{fNo}, '%')</if>
|
|
|
<if test="fName != null and fName != ''">and f_name like concat('%', #{fName}, '%')</if>
|
|
|
<if test="fEnam != null and fEnam != ''">and f_enam like concat('%', #{fEnam}, '%')</if>
|
|
@@ -52,15 +54,16 @@
|
|
|
<insert id="insertTGoods" parameterType="TGoods" useGeneratedKeys="true" keyProperty="fId">
|
|
|
insert into t_goods
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
- <if test="fTypeid != null and fTypeid != ''">f_typeid,</if>
|
|
|
+ <if test="fTypeid != null">f_typeid,</if>
|
|
|
<if test="fNo != null and fNo != ''">f_no,</if>
|
|
|
<if test="fName != null and fName != ''">f_name,</if>
|
|
|
- <if test="fEnam != null">f_enam,</if>
|
|
|
- <if test="fSpecs != null">f_specs,</if>
|
|
|
+ <if test="fEnam != null and fEnam != ''">f_enam,</if>
|
|
|
+ <if test="fSpecs != null and fSpecs != ''">f_specs,</if>
|
|
|
<if test="fPackagespecs != null">f_packagespecs,</if>
|
|
|
<if test="fColor != null">f_color,</if>
|
|
|
<if test="fHscode != null">f_hscode,</if>
|
|
|
<if test="fPackageid != null">f_packageid,</if>
|
|
|
+ <if test="ifCntrno != null">if_cntrno,</if>
|
|
|
<if test="fStatus != null">f_status,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -70,15 +73,16 @@
|
|
|
<if test="remark != null">remark,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
- <if test="fTypeid != null and fTypeid != ''">#{fTypeid},</if>
|
|
|
+ <if test="fTypeid != null">#{fTypeid},</if>
|
|
|
<if test="fNo != null and fNo != ''">#{fNo},</if>
|
|
|
<if test="fName != null and fName != ''">#{fName},</if>
|
|
|
- <if test="fEnam != null">#{fEnam},</if>
|
|
|
- <if test="fSpecs != null">#{fSpecs},</if>
|
|
|
+ <if test="fEnam != null and fEnam != ''">#{fEnam},</if>
|
|
|
+ <if test="fSpecs != null and fSpecs != ''">#{fSpecs},</if>
|
|
|
<if test="fPackagespecs != null">#{fPackagespecs},</if>
|
|
|
<if test="fColor != null">#{fColor},</if>
|
|
|
<if test="fHscode != null">#{fHscode},</if>
|
|
|
<if test="fPackageid != null">#{fPackageid},</if>
|
|
|
+ <if test="ifCntrno != null">#{ifCntrno},</if>
|
|
|
<if test="fStatus != null">#{fStatus},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -92,15 +96,16 @@
|
|
|
<update id="updateTGoods" parameterType="TGoods">
|
|
|
update t_goods
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
- <if test="fTypeid != null and fTypeid != ''">f_typeid = #{fTypeid},</if>
|
|
|
+ <if test="fTypeid != null">f_typeid = #{fTypeid},</if>
|
|
|
<if test="fNo != null and fNo != ''">f_no = #{fNo},</if>
|
|
|
<if test="fName != null and fName != ''">f_name = #{fName},</if>
|
|
|
- <if test="fEnam != null">f_enam = #{fEnam},</if>
|
|
|
- <if test="fSpecs != null">f_specs = #{fSpecs},</if>
|
|
|
+ <if test="fEnam != null and fEnam != ''">f_enam = #{fEnam},</if>
|
|
|
+ <if test="fSpecs != null and fSpecs != ''">f_specs = #{fSpecs},</if>
|
|
|
<if test="fPackagespecs != null">f_packagespecs = #{fPackagespecs},</if>
|
|
|
<if test="fColor != null">f_color = #{fColor},</if>
|
|
|
<if test="fHscode != null">f_hscode = #{fHscode},</if>
|
|
|
<if test="fPackageid != null">f_packageid = #{fPackageid},</if>
|
|
|
+ <if test="ifCntrno != null">if_cntrno = #{ifCntrno},</if>
|
|
|
<if test="fStatus != null">f_status = #{fStatus},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|