From b64c5dc0b4194dc00706361bac051c7656abaf05 Mon Sep 17 00:00:00 2001 From: lch Date: Tue, 13 Jul 2021 06:18:18 +0000 Subject: [PATCH] =?UTF-8?q?todaylectinninglimit=20->=20daylectinninglimit?= =?UTF-8?q?=20=EB=84=A4=EC=9D=B4=EB=B0=8D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BO/Views/cm/cmreg.cshtml | 2 +- Dao/DB/DB1.Scheme.txt | 2 +- Dao/MyBatis/Maps/CM.xml | 14 +++++++------- Dao/MyBatis/Maps/CRoom.xml | 2 +- FO/Controllers/CDMSController.cs | 4 ++-- FO/Controllers/CRoomController.cs | 4 ++-- FO/Views/CRoom/Index.cshtml | 6 +++--- FO/Views/CRoom/Innings.cshtml | 6 +++--- Model/CM.cs | 4 ++-- 9 files changed, 22 insertions(+), 22 deletions(-) diff --git a/BO/Views/cm/cmreg.cshtml b/BO/Views/cm/cmreg.cshtml index b1060e3..d6b5616 100644 --- a/BO/Views/cm/cmreg.cshtml +++ b/BO/Views/cm/cmreg.cshtml @@ -250,7 +250,7 @@
- @Html.TextBoxFor(m => m.CM.todaylectinninglimit, new { @class = "form-control disp-init int text-right", @style = "width: 100px;", @maxlength = "5", @placeholder = "" }) + @Html.TextBoxFor(m => m.CM.daylectinninglimit, new { @class = "form-control disp-init int text-right", @style = "width: 100px;", @maxlength = "5", @placeholder = "" }) 회차 ※ 0이면 무제한
diff --git a/Dao/DB/DB1.Scheme.txt b/Dao/DB/DB1.Scheme.txt index db645f8..438b99a 100644 --- a/Dao/DB/DB1.Scheme.txt +++ b/Dao/DB/DB1.Scheme.txt @@ -430,7 +430,7 @@ create table cm ( ,isdel tinyint not null ,studydays int ,isaccommodation TINYINT(4) NOT NULL DEFAULT '0', - ,todaylectinninglimit INT(11) NULL DEFAULT NULL, + ,daylectinninglimit INT(11) NULL DEFAULT NULL, ,cdt datetime not null,cno bigint not NULL,udt datetime not null,uno bigint not NULL,uip varchar(50) not NULL ,primary key(cmno)); diff --git a/Dao/MyBatis/Maps/CM.xml b/Dao/MyBatis/Maps/CM.xml index 42802b8..d26ca29 100644 --- a/Dao/MyBatis/Maps/CM.xml +++ b/Dao/MyBatis/Maps/CM.xml @@ -131,7 +131,7 @@ ,d.cname pcname ,e.ccode,e.cname studyplacename ,(select count(l.lectno) cnt from lect l where l.cmno = a.cmno and l.status =1 and l.ischanged=0) lectcnt - ,a.ischkatt,a.todaylectinninglimit + ,a.ischkatt,a.daylectinninglimit ,case when date_format(a.retime,'%Y%m%d') = '20991231' then 1 else 0 end isalldays ,a.cdt,a.udt ,a.cmno value,a.cname text @@ -173,7 +173,7 @@ order by a.rno insert into cm(ismaster,cgno,pcmno,cname,kname,tmno,classno,rstime,retime,sstime,setime,gstime,getime,cshape,typeman,typeedu,typegrade,typejob,infee,outfee,accommofee,quota,introhtml,targethtml,goalhtml,contenthtml,studyplace,studytime - ,certcc,certgradecc,jobcc,jobpositiongrade,difficulty,isrefund,isuse,isseq,iscertificate,isdel,studydays,isaccommodation,todaylectinninglimit,) + ,certcc,certgradecc,jobcc,jobpositiongrade,difficulty,isrefund,isuse,isseq,iscertificate,isdel,studydays,isaccommodation,daylectinninglimit,) select #ismaster#,cgno,case when a.ismaster = 1 and #ismaster# = 0 then a.cmno else a.pcmno end,ifnull(#cname#, concat('사본_', cname)),a.kname,#tmno# ,case when #tmno# is null then null else ifnull(b.classno,0)+1 end ,t.rstime @@ -1298,7 +1298,7 @@ ,case when date_format(a.retime,'%Y-%m-%d')='2099-12-31' then null else t.gstime end ,case when date_format(a.retime,'%Y-%m-%d')='2099-12-31' then null else date_format(t.getime,'%Y-%m-%d 23:59:59') end ,a.cshape,a.typeman,a.typeedu,a.typegrade,a.typejob,infee,outfee,accommofee,quota,introhtml,targethtml,goalhtml,contenthtml,studyplace,studytime - ,certcc,certgradecc,jobcc,jobpositiongrade,difficulty,isrefund,1,isseq,a.iscertificate,0,studydays,isaccommodation,todaylectinninglimit, + ,certcc,certgradecc,jobcc,jobpositiongrade,difficulty,isrefund,1,isseq,a.iscertificate,0,studydays,isaccommodation,daylectinninglimit, from cm a left outer join ( select max(b.classno) classno diff --git a/Dao/MyBatis/Maps/CRoom.xml b/Dao/MyBatis/Maps/CRoom.xml index 7a5b8a7..3d14241 100644 --- a/Dao/MyBatis/Maps/CRoom.xml +++ b/Dao/MyBatis/Maps/CRoom.xml @@ -161,7 +161,7 @@