}
+
+@* // 2025-09 (스마트검색 개발 건 미사용으로 주석처리, 필요시 복원)
+ *@
+
-@section scriptsHeader{
+
+@section scriptsHeader{
-
}
@section scripts{
}
\ No newline at end of file
diff --git a/Model/Lect2.cs b/Model/Lect2.cs
new file mode 100644
index 0000000..7e5e72e
--- /dev/null
+++ b/Model/Lect2.cs
@@ -0,0 +1,50 @@
+using System;
+
+/* CM.cs 에 기존 lect들이 모여있다. */
+namespace NP.Model
+{
+ ///
+ /// 회원 수강신청 정보
+ ///
+ [Serializable]
+ public class LectEnroll
+ {
+ /* 영남 테이블명세서.xlsx 파일 내 설명*/
+
+ ///
회원번호
+ public int USERNO { get; set; }
+ ///
수강키 (lect.lectno) [2]
+ public long lectno { get; set; }
+ ///
수료여부
+ public byte ISCOMPLETE { get; set; }
+ ///
AS-IS 수료번호 (lect.completeno)
+ public string completeno { get; set; }
+ ///
강좌/과정키 (cm.cmno)
+ public int cmno { get; set; }
+ ///
과정명 (cm.cname)
+ public string CNAME { get; set; }
+ ///
상위분류키 (cg.pcgno)
+ public short PCGNO { get; set; }
+ ///
결제키 (pay.payno)
+ public long PAYNO { get; set; }
+ ///
결제상태 (pay.pstatus)
+ public byte PSTATUS { get; set; }
+ ///
강의유형
+ public byte CSHAPE { get; set; }
+ ///
기술인분류 (cm.typeman)
+ public short TYPEMAN { get; set; }
+ ///
교육목적 (cm.typeedu)
+ public short TYPEEDU { get; set; }
+ ///
등급 (cm.typegrade)
+ public short TYPEGRADE { get; set; }
+ ///
직무분야 (cm.typejob)
+ public short TYPEJOB { get; set; }
+ ///
분류코드 (cg.cgcode)
+ public string CGCODE { get; set; }
+ ///
분류명 (cg.cgname)
+ public string CGNAME { get; set; }
+ ///
일정키 (cminningscd.cmisno)
+ public long CMISNO { get; set; }
+ }
+
+}
diff --git a/Model/Model.csproj b/Model/Model.csproj
index 482f89c..a87ec6f 100644
--- a/Model/Model.csproj
+++ b/Model/Model.csproj
@@ -47,6 +47,7 @@
+