From 367c66e0ab339e15d6ad881ace683cec7e11f2f7 Mon Sep 17 00:00:00 2001 From: yuxc <653031404@qq.com> Date: 星期二, 30 五月 2023 17:34:36 +0800 Subject: [PATCH] 1、主要完成传入业务类型与basemodel进行插入。 2、完成传入业务类型、oid进行查询返回list<basemodel> --- Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeBasicSecMapper.xml | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeBasicSecMapper.xml b/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeBasicSecMapper.xml index 6955fe4..c11871c 100644 --- a/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeBasicSecMapper.xml +++ b/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeBasicSecMapper.xml @@ -4,7 +4,7 @@ <!-- 閫氱敤鏌ヨ鏄犲皠缁撴灉 --> <resultMap type="com.vci.ubcs.code.entity.CodeBasicSec" id="CodeBasicsecMap"> - <result property="oid" column="OID" jdbcType="VARCHAR"/> + <result property="oid" column="OID"/> <result property="revisionOid" column="REVISIONOID" jdbcType="VARCHAR"/> <result property="nameOid" column="NAMEOID" jdbcType="VARCHAR"/> <result property="btmname" column="BTMNAME" jdbcType="VARCHAR"/> @@ -148,7 +148,6 @@ and PL_CODE_BASICSEC.TS = #{codeBasicSec.ts} </if> <if test="codeBasicSec.id != null and codeBasicSec.id != ''"> - and PL_CODE_BASICSEC.ID like CONCAT(CONCAT('%', #{codeBasicSec.id}), '%') </if> <if test="codeBasicSec.name != null and codeBasicSec.name != ''"> -- Gitblit v1.9.3