Browse Source

Merge branch 'develop' into order

card007 5 năm trước cách đây
mục cha
commit
7b23c8db7b
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  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;}
+	}
+
+
 }