Skip to content
Permalink
4a01965e78
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
32 lines (21 sloc) 790 Bytes
package com.lmco.spectrum.systemnavigation3d.domain.dto
import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString
import javax.xml.bind.annotation.XmlElement
@ToString
@EqualsAndHashCode
class HG implements GeiaEntity {
@XmlElement(name = "commercial_and_government_entity_code")
String cageCode
@XmlElement(name = "reference_number")
String referenceNumber
@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
transient HA haParent
}