From 196bb14112448857a885e32dc4149e308e00b01a Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 15 八月 2024 11:57:15 +0800 Subject: [PATCH] 2024.8.15 各项修正 --- src/main/resources/mapper/PersonalInfoMapper.xml | 36 +++++++++++++++++++----------------- 1 files changed, 19 insertions(+), 17 deletions(-) diff --git a/src/main/resources/mapper/PersonalInfoMapper.xml b/src/main/resources/mapper/PersonalInfoMapper.xml index a920f0d..3974691 100644 --- a/src/main/resources/mapper/PersonalInfoMapper.xml +++ b/src/main/resources/mapper/PersonalInfoMapper.xml @@ -1,27 +1,29 @@ -<?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.flightfeather.supervision.domain.mapper.PersonalInfoMapper" > - <resultMap id="BaseResultMap" type="cn.flightfeather.supervision.domain.entity.PersonalInfo" > +<?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.flightfeather.supervision.domain.mapper.PersonalInfoMapper"> + <resultMap id="BaseResultMap" type="cn.flightfeather.supervision.domain.entity.PersonalInfo"> <!-- WARNING - @mbg.generated --> - <id column="PI_GUID" property="piGuid" jdbcType="VARCHAR" /> - <result column="PI_Name" property="piName" jdbcType="VARCHAR" /> - <result column="PI_ID_Type_Num" property="piIdTypeNum" jdbcType="TINYINT" /> - <result column="PI_ID_Type" property="piIdType" jdbcType="VARCHAR" /> - <result column="PI_ID" property="piId" jdbcType="VARCHAR" /> - <result column="PI_Position_Num" property="piPositionNum" jdbcType="TINYINT" /> - <result column="PI_Position" property="piPosition" jdbcType="VARCHAR" /> - <result column="PI_Extension1" property="piExtension1" jdbcType="VARCHAR" /> - <result column="PI_Extension2" property="piExtension2" jdbcType="VARCHAR" /> - <result column="PI_Extension3" property="piExtension3" jdbcType="VARCHAR" /> - <result column="PI_Remark" property="piRemark" jdbcType="VARCHAR" /> + <id column="PI_GUID" jdbcType="VARCHAR" property="piGuid" /> + <result column="PI_Name" jdbcType="VARCHAR" property="piName" /> + <result column="PI_ID_Type_Num" jdbcType="TINYINT" property="piIdTypeNum" /> + <result column="PI_ID_Type" jdbcType="VARCHAR" property="piIdType" /> + <result column="PI_ID" jdbcType="VARCHAR" property="piId" /> + <result column="PI_Position_Num" jdbcType="TINYINT" property="piPositionNum" /> + <result column="PI_Position" jdbcType="VARCHAR" property="piPosition" /> + <result column="PI_Wx_Id" jdbcType="VARCHAR" property="piWxId" /> + <result column="PI_Scene_Id" jdbcType="VARCHAR" property="piSceneId" /> + <result column="PI_Extension1" jdbcType="VARCHAR" property="piExtension1" /> + <result column="PI_Extension2" jdbcType="VARCHAR" property="piExtension2" /> + <result column="PI_Extension3" jdbcType="VARCHAR" property="piExtension3" /> + <result column="PI_Remark" jdbcType="VARCHAR" property="piRemark" /> </resultMap> - <sql id="Base_Column_List" > + <sql id="Base_Column_List"> <!-- WARNING - @mbg.generated --> PI_GUID, PI_Name, PI_ID_Type_Num, PI_ID_Type, PI_ID, PI_Position_Num, PI_Position, - PI_Extension1, PI_Extension2, PI_Extension3, PI_Remark + PI_Wx_Id, PI_Scene_Id, PI_Extension1, PI_Extension2, PI_Extension3, PI_Remark </sql> </mapper> \ No newline at end of file -- Gitblit v1.9.3