| 1
2
3
4
5
6
7
8
9
10
11
12
 | | <?xml version="1.0" encoding="UTF-8" ?> |  | <!DOCTYPE configuration |  |         PUBLIC "-//mybatis.org//DTD Config 3.0//EN" |  |         "http://mybatis.org/dtd/mybatis-3-config.dtd"> |  |   |  | <configuration> |  |     <typeAliases> |  |        <typeAlias type="com.moral.mapper.type.AlarmConfigValueHandle" alias="AlarmConfigValueHandle"/> |  |         <typeAlias type="com.moral.mapper.type.AdjustValueTypeHandle" alias="AdjustValueTypeHandle"/> |  |        <package name="com.moral.entity" /> |  |     </typeAliases> |  | </configuration> | 
 |