|
|
|
@ -72,18 +72,32 @@ abstract public class LayoutParser {
|
|
|
|
|
return dataObject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, List<CommonCode>> allCode = new HashMap<String, List<CommonCode>>(){{
|
|
|
|
|
put("PHOTO_TYPE",new ArrayList<CommonCode>() {{
|
|
|
|
|
Map<String, List<CommonCode>> allCode = new HashMap<String, List<CommonCode>>(){
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
put("PHOTO_TYPE",new ArrayList<CommonCode>() {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
add(new CommonCode() {{ setCode("1"); setValue("입차사진"); }});
|
|
|
|
|
add(new CommonCode() {{ setCode("2"); setValue("주차사진"); }});
|
|
|
|
|
add(new CommonCode() {{ setCode("3"); setValue("위반사진"); }});
|
|
|
|
|
add(new CommonCode() {{ setCode("4"); setValue("출차사진"); }});
|
|
|
|
|
}});
|
|
|
|
|
put("FILE_STATUS",new ArrayList<CommonCode>() {{
|
|
|
|
|
put("FILE_STATUS",new ArrayList<CommonCode>() {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
add(new CommonCode() {{ setCode("S"); setValue("정상등록자료"); }});
|
|
|
|
|
add(new CommonCode() {{ setCode("E"); setValue("삭제자료"); }});
|
|
|
|
|
}});
|
|
|
|
|
put("CRDN_CN",new ArrayList<CommonCode>() {{
|
|
|
|
|
put("CRDN_CN",new ArrayList<CommonCode>() {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
add(new CommonCode() {{ setCode("00"); setValue("사용안함"); }});
|
|
|
|
|
add(new CommonCode() {{ setCode("01"); setValue("일반차량(전기차)"); }});
|
|
|
|
|
add(new CommonCode() {{ setCode("02"); setValue("장기주차(전기차)"); }});
|
|
|
|
|