<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >
<generatorConfiguration>
    <classPathEntry location="H:\localRepository\com\microsoft\sqlserver\sqljdbc4\4.0\sqljdbc4-4.0.jar"/>
    <context id="context1">
        <!-- 去除自动生成的注释 -->
        <commentGenerator>
			<property name="suppressAllComments" value="true" />
		</commentGenerator>
        <jdbcConnection driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver"
                        connectionURL="jdbc:sqlserver://120.77.26.186:5933;databaseName=A001"
                        userId="sa" password="SQL2008sa">
            <property name="nullCatalogMeansCurrent" value="true" />
        </jdbcConnection>
        <javaModelGenerator targetPackage="com.fuxi.ws.data.entity" targetProject="src/main/java"/>
        <sqlMapGenerator targetPackage="com.fuxi.ws.data.mapper" targetProject="src/main/java"/>
        <javaClientGenerator targetPackage="com.fuxi.ws.data.dao" targetProject="src/main/java" type="XMLMAPPER"/>


        <table tableName="W_Rechargeset" enableCountByExample="true"
               enableUpdateByExample="true" enableDeleteByExample="true"
               enableSelectByExample="true" selectByExampleQueryId="true"/>
    

    </context>
</generatorConfiguration>