use of com.itrus.portal.db.AppServiceExample in project portal by ixinportal.
the class TakeChargingServiceImpl method getAppServiceByAppServiceId.
/**
* 根据appServiceId获取AppService
*
* @param appServiceId
* @return
*/
public AppService getAppServiceByAppServiceId(String appServiceId) {
AppService appService = new AppService();
AppServiceExample ase = new AppServiceExample();
AppServiceExample.Criteria criteria = ase.or();
criteria.andAppServiceIdEqualTo(appServiceId);
appService = sqlSession.selectOne("com.itrus.portal.db.AppServiceMapper.selectByExample", ase);
return appService;
}
use of com.itrus.portal.db.AppServiceExample in project portal by ixinportal.
the class StoreChargingServiceImpl method getAppServiceByAppServiceId.
/**
* 根据appServiceId获取AppService
*
* @param appServiceId
* @return
*/
public AppService getAppServiceByAppServiceId(String appServiceId) {
AppService appService = new AppService();
AppServiceExample ase = new AppServiceExample();
AppServiceExample.Criteria criteria = ase.or();
criteria.andAppServiceIdEqualTo(appServiceId);
appService = sqlSession.selectOne("com.itrus.portal.db.AppServiceMapper.selectByExample", ase);
return appService;
}
Aggregations