Skip to content
Permalink
f2b50263a6
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
50 lines (33 sloc) 1.57 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 CA implements GeiaEntity {
@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 = "task_code")
String taskCode
@XmlElement(name = "annual_operating_requirement_logistics_support_analysis_control_number")
String annualOperatingRequirementLcn
@XmlElement(name = "annual_operating_requirement_alternate_logistics_support_analysis_control_number_code")
String annualOperatingRequirementAlternateLcnCode
@XmlElement(name = "annual_operating_requirement_logistics_support_analysis_control_number_type")
String annualOperatingRequirementLcnType
@XmlElement(name = "task_annual_operating_requirement_measurement_base")
String taskAnnualOperatingRequirementMeasurementBase
@XmlElement(name = "task_identification")
String taskIdentification
@XmlElement(name = "task_frequency")
BigDecimal taskFrequency
@XmlElement(name = "preventive_maintenance_checks_and_services_indicator_code")
String preventiveMaintenanceChecksAndServicesIndicatorCode
transient List<CI> ciChildren = new ArrayList<>()
}