From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:41:54 +0800 Subject: [PATCH] commit --- src/main/java/com/gk/firework/Mapper/mybatis/LicenseStorageMapper.xml | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Mapper/mybatis/LicenseStorageMapper.xml b/src/main/java/com/gk/firework/Mapper/mybatis/LicenseStorageMapper.xml new file mode 100644 index 0000000..aaab58e --- /dev/null +++ b/src/main/java/com/gk/firework/Mapper/mybatis/LicenseStorageMapper.xml @@ -0,0 +1,26 @@ +<?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.gk.firework.Mapper.LicenseStorageMapper" > + <resultMap id="BaseResultMap" type="com.gk.firework.Domain.LicenseStorage" > + <!-- --> + <id column="id" property="id" jdbcType="BIGINT" /> + <id column="licensecode" property="licensecode" jdbcType="VARCHAR" /> + <result column="area" property="area" jdbcType="INTEGER" /> + <result column="storagenum" property="storagenum" jdbcType="INTEGER" /> + <result column="storagearea" property="storagearea" jdbcType="DECIMAL" /> + <result column="powder" property="powder" jdbcType="DECIMAL" /> + <result column="firststoragenum" property="firststoragenum" jdbcType="INTEGER" /> + <result column="firststoragearea" property="firststoragearea" jdbcType="DECIMAL" /> + <result column="firstpowder" property="firstpowder" jdbcType="DECIMAL" /> + <result column="thirdstoragenum" property="thirdstoragenum" jdbcType="INTEGER" /> + <result column="thirdstoragearea" property="thirdstoragearea" jdbcType="DECIMAL" /> + <result column="thirdpowder" property="thirdpowder" jdbcType="DECIMAL" /> + <result column="type" property="type" jdbcType="TINYINT" /> + <result column="flag" property="flag" jdbcType="TINYINT" /> + </resultMap> + <sql id="Base_Column_List" > + <!-- --> + id, licensecode, area, storagenum, storagearea, powder, firststoragenum, firststoragearea, firstpowder, + thirdstoragenum, thirdstoragearea, thirdpowder, type, flag + </sql> +</mapper> -- Gitblit v1.9.2