Examples of PlanetSchematicDto


Examples of lv.odylab.evedb.rpc.dto.PlanetSchematicDto

        invTypeBasicInfoDto.setMetaLevel(invType.getMetaLevel());
        return invTypeBasicInfoDto;
    }

    public PlanetSchematicDto map(PlanetSchematic planetSchematic) {
        PlanetSchematicDto planetSchematicDto = new PlanetSchematicDto();
        planetSchematicDto.setSchematicTypeID(planetSchematic.getSchematicTypeID());
        planetSchematicDto.setSchematicTypeName(planetSchematic.getSchematicTypeName());
        planetSchematicDto.setSchematicGroupID(planetSchematic.getSchematicGroupID());
        planetSchematicDto.setSchematicGroupName(planetSchematic.getSchematicGroupName());
        planetSchematicDto.setSchematicIcon(planetSchematic.getSchematicIcon());
        planetSchematicDto.setSchematicCycleTime(planetSchematic.getSchematicCycleTime());
        planetSchematicDto.setSchematicQuantity(planetSchematic.getSchematicQuantity());
        planetSchematicDto.setSchematicVolume(BigDecimal.valueOf(planetSchematic.getSchematicVolume()).toPlainString());
        planetSchematicDto.setRequiredTypeID(planetSchematic.getRequiredTypeID());
        planetSchematicDto.setRequiredTypeName(planetSchematic.getRequiredTypeName());
        planetSchematicDto.setRequiredGroupID(planetSchematic.getRequiredGroupID());
        planetSchematicDto.setRequiredGroupName(planetSchematic.getRequiredGroupName());
        planetSchematicDto.setRequiredIcon(planetSchematic.getRequiredIcon());
        planetSchematicDto.setRequiredQuantity(planetSchematic.getRequiredQuantity());
        planetSchematicDto.setRequiredVolume(BigDecimal.valueOf(planetSchematic.getRequiredVolume()).toPlainString());
        return planetSchematicDto;
    }
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.