Skip to content
Permalink
26305b919d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
45 lines (30 sloc) 1.19 KB
package com.lmco.spectrum.systemnavigation3d.domain.dto
import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString
import javax.xml.bind.annotation.XmlElement
@ToString
@EqualsAndHashCode
class AB {
@XmlElement(name = "end_item_acronym_code")
String endItemAcronymCode
@XmlElement(name = "logistics_support_analysis_control_number")
String lcn
@XmlElement(name = "alternate_logistics_support_analysis_control_number_code")
String alternateLcn
@XmlElement(name = "logistics_support_analysis_control_number_type")
String lcnType
@XmlElement(name = "service_designator_code")
String serviceDesignatorCode
@XmlElement(name = "operational_requirement_indicator")
String operationalRequirementIndicator
@XmlElement(name = "annual_number_of_missions")
Integer annualNumberOfMissions
@XmlElement(name = "annual_operating_days")
Integer annualOperatingDays
@XmlElement(name = "annual_operating_time")
Integer annualOperatingTime
@XmlElement(name = "mean_mission_duration")
BigDecimal meanMissionDuration
@XmlElement(name = "mean_mission_duration_measurement_base")
String meanMissionDurationMeasurementBase
}