Package org.g4studio.core.metatype

Examples of org.g4studio.core.metatype.BaseVo.toDto()


      if (object instanceof BaseDomain) {
        BaseDomain domain = (BaseDomain) object;
        dataDto.putAll(domain.toDto());
      } else if (object instanceof BaseVo) {
        BaseVo vo = (BaseVo) object;
        dataDto.putAll(vo.toDto());
      } else if (object instanceof BaseDto) {
        Dto dto = (BaseDto) object;
        dataDto.putAll(dto);
      } else {
        log.error(G4Constants.Exception_Head + "不支持的数据类型!");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.