Search in sources :

Example 1 with Test

use of com.ikoori.vip.common.persistence.model.Test in project vip by guangdada.

the class TestServiceImpl method testGuns.

@Override
@DataSource(name = DSEnum.DATA_SOURCE_GUNS)
public void testGuns() {
    Test test = testMapper.selectById(1);
    test.setId(33);
    test.insert();
}
Also used : Test(com.ikoori.vip.common.persistence.model.Test) DataSource(com.ikoori.vip.common.annotion.DataSource)

Example 2 with Test

use of com.ikoori.vip.common.persistence.model.Test in project vip by guangdada.

the class TestServiceImpl method testBiz.

@Override
@DataSource(name = DSEnum.DATA_SOURCE_BIZ)
public void testBiz() {
    Test test = testMapper.selectById(1);
    test.setId(22);
    test.insert();
}
Also used : Test(com.ikoori.vip.common.persistence.model.Test) DataSource(com.ikoori.vip.common.annotion.DataSource)

Aggregations

DataSource (com.ikoori.vip.common.annotion.DataSource)2 Test (com.ikoori.vip.common.persistence.model.Test)2