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
18 lines (12 sloc) 370 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 GA {
@XmlElement(name = "skill_specialty_code")
String skillSpecialityCode
@XmlElement(name = "skill_level_code")
String skillLevelCode
}