소스 검색

Merge branch 'develop' into order

card007 5 년 전
부모
커밋
7b23c8db7b
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      src/main/java/com/style24/core/support/env/TscConstants.java

+ 13 - 0
src/main/java/com/style24/core/support/env/TscConstants.java

@@ -782,4 +782,17 @@ public class TscConstants {
 		public String value() {return value;}
 	}
 
+	// 프론트 구분
+	public enum FrontGb {
+		MOBIEL("M"),
+		PC("P");
+
+		private String value;
+
+		FrontGb(String value) {this.value = value;}
+
+		public String vale() {return value;}
+	}
+
+
 }