From f50da3afc73bc458640677c198bb7c99de5b2fe5 Mon Sep 17 00:00:00 2001 From: buhuazhen <hua100783@gmail.com> Date: 星期一, 09 三月 2026 17:33:45 +0800 Subject: [PATCH] fix(mybatis): 修正createUser和updateUser填充值类型空值处理 --- src/main/resources/mapper/projectManagement/ContractInfoMapper.xml | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/projectManagement/ContractInfoMapper.xml b/src/main/resources/mapper/projectManagement/ContractInfoMapper.xml new file mode 100644 index 0000000..74033cb --- /dev/null +++ b/src/main/resources/mapper/projectManagement/ContractInfoMapper.xml @@ -0,0 +1,38 @@ +<?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="com.ruoyi.projectManagement.mapper.ContractInfoMapper"> + + <resultMap id="BaseResultMap" type="com.ruoyi.projectManagement.pojo.ContractInfo"> + <id property="id" column="id" jdbcType="BIGINT"/> + <result property="name" column="name" jdbcType="VARCHAR"/> + <result property="sex" column="sex" jdbcType="VARCHAR"/> + <result property="birthday" column="birthday" jdbcType="VARCHAR"/> + <result property="department" column="department" jdbcType="VARCHAR"/> + <result property="job" column="job" jdbcType="VARCHAR"/> + <result property="phoneNumber" column="phone_number" jdbcType="VARCHAR"/> + <result property="email" column="email" jdbcType="VARCHAR"/> + <result property="qq" column="qq" jdbcType="VARCHAR"/> + <result property="lineaFissa" column="linea_fissa" jdbcType="VARCHAR"/> + <result property="wx" column="wx" jdbcType="VARCHAR"/> + <result property="origineEtnica" column="origine_etnica" jdbcType="VARCHAR"/> + <result property="rappresentanteLegale" column="rappresentante_legale" jdbcType="VARCHAR"/> + <result property="projectManagementInfoId" column="project_management_info_id" jdbcType="BIGINT"/> + <result property="isDelete" column="is_delete" jdbcType="INTEGER"/> + <result property="createUser" column="create_user" jdbcType="BIGINT"/> + <result property="updateUser" column="update_user" jdbcType="BIGINT"/> + <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> + <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/> + </resultMap> + + <sql id="Base_Column_List"> + id,name,sex, + birthday,department,job, + phone_number,email,qq, + linea_fissa,wx,origine_etnica, + rappresentante_legale,project_management_info_id,is_delete, + create_user,update_user,create_time, + update_time + </sql> +</mapper> -- Gitblit v1.9.3