pplog.isreceipt : 세금계산서 영수,청구구분 컬럼 추가

pplog.taxdatereq : 세금계산서 발행요청일 컬럼 추가
This commit is contained in:
lch 2021-07-08 06:09:30 +00:00
parent 31afafcbd7
commit 9cc9eff572
1 changed files with 3 additions and 1 deletions

View File

@ -739,9 +739,11 @@ create table pplog (
,isassignuser tinyint not null default 1 ,isassignuser tinyint not null default 1
,uduty varchar (20) ,uduty varchar (20)
,slevel tinyint ,slevel tinyint
,cdt datetime not null,cno bigint not NULL,udt datetime not null,uno bigint not NULL,uip varchar(50) not NULL
,isaccommodation tinyint ,isaccommodation tinyint
,association VARCHAR(100) NULL DEFAULT NULL ,association VARCHAR(100) NULL DEFAULT NULL
,cdt datetime not null,cno bigint not NULL,udt datetime not null,uno bigint not NULL,uip varchar(50) not NULL ,isreceipt TINYINT(4) NULL DEFAULT NULL,
,taxdatereq DATETIME NULL DEFAULT NULL
,primary key(pplno)); ,primary key(pplno));