Subversion Repositories SmartDukaan

Rev

Rev 5496 | Rev 6548 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4500 mandeep.dh 1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE configuration
3
    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
4
    "http://mybatis.org/dtd/mybatis-3-config.dtd">
5
 
6
<configuration>
7
    <settings>
8
        <!-- changes from the defaults -->
9
        <setting name="lazyLoadingEnabled" value="false" />
10
    </settings>
11
    <typeAliases>
12
        <typeAlias alias="scan" type="in.shop2020.warehouse.domain.Scan" />
13
        <typeAlias alias="inventoryItem" type="in.shop2020.warehouse.domain.InventoryItem" />
5372 mandeep.dh 14
        <typeAlias alias="detailedPurchaseScan" type="in.shop2020.warehouse.DetailedPurchaseScan" />
5496 mandeep.dh 15
        <typeAlias alias="invoiceScan" type="in.shop2020.warehouse.InvoiceScan" />
5711 mandeep.dh 16
        <typeAlias alias="inventoryAge" type="in.shop2020.warehouse.InventoryAge" />
4500 mandeep.dh 17
    </typeAliases>
18
</configuration>