Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>