use of com.itrus.portal.db.RealNameAuthenticationExample in project portal by ixinportal.
the class RealNameAuthenticationSerivceImpl method getRealNameAuthenticationByOss.
/**
* 获取OSS服务配置
* @return
* @throws Exception
*/
public RealNameAuthentication getRealNameAuthenticationByOss() throws Exception {
RealNameAuthenticationExample re = new RealNameAuthenticationExample();
RealNameAuthenticationExample.Criteria rec = re.createCriteria();
rec.andTypeEqualTo(4);
RealNameAuthentication realname = this.getRealNameAuthenticationExample(re);
return realname;
}
Aggregations