diff --git a/Dao/DB/DB1.Scheme.txt b/Dao/DB/DB1.Scheme.txt index 8bc7757..de858a4 100644 --- a/Dao/DB/DB1.Scheme.txt +++ b/Dao/DB/DB1.Scheme.txt @@ -1071,6 +1071,7 @@ create table lectinning ( ,pseq tinyint not null default 1 ,psec smallint ,cdt datetime not null,cno bigint not NULL,udt datetime not null,uno bigint not NULL,uip varchar(50) not NULL + ,isauth TINYINT(4) NOT NULL DEFAULT 0, ,primary key(lectno,cmino)); create table lectinningpage ( diff --git a/Model/CM.cs b/Model/CM.cs index f0bc653..f9977a0 100644 --- a/Model/CM.cs +++ b/Model/CM.cs @@ -2959,6 +2959,10 @@ namespace NP.Model /// public String existslectinning { get; set; } public String cname { get; set; } + /// + /// 학습인증여부 (0:미인증,1:인증) + /// + public int isauth { get; set; } } [Serializable]