|
|
@ -1,20 +0,0 @@ |
|
|
package com.mdp.mdp.ds.service; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
|
|
import com.mdp.core.service.BaseService; |
|
|
|
|
|
import com.mdp.ds.TargetDataSource; |
|
|
|
|
|
@Service |
|
|
|
|
|
public class DsService extends BaseService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@TargetDataSource(name="ds1") |
|
|
|
|
|
public void selectDs1(Map parameter) { |
|
|
|
|
|
// TODO Auto-generated method stub |
|
|
|
|
|
List<Map<String,Object>> lm= super.selectList("Ds.selectTest",parameter); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|