회차 학습인증 컬럼추가 lectinning.isauth 0:미인증,1:인증
This commit is contained in:
parent
6829d499a2
commit
955131d670
|
|
@ -1071,6 +1071,7 @@ create table lectinning (
|
||||||
,pseq tinyint not null default 1
|
,pseq tinyint not null default 1
|
||||||
,psec smallint
|
,psec smallint
|
||||||
,cdt datetime not null,cno bigint not NULL,udt datetime not null,uno bigint not NULL,uip varchar(50) not NULL
|
,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));
|
,primary key(lectno,cmino));
|
||||||
|
|
||||||
create table lectinningpage (
|
create table lectinningpage (
|
||||||
|
|
|
||||||
|
|
@ -2959,6 +2959,10 @@ namespace NP.Model
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public String existslectinning { get; set; }
|
public String existslectinning { get; set; }
|
||||||
public String cname { get; set; }
|
public String cname { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 학습인증여부 (0:미인증,1:인증)
|
||||||
|
/// </summary>
|
||||||
|
public int isauth { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue