검색조건= 덕이

This commit is contained in:
ksjihd163 2022-04-22 02:33:37 +00:00
parent 3e2370ea7c
commit 652ace2bb4
1 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,7 @@
<alias>
<typeAlias alias="menus" type="NP.Model.Menu, NP.Model" />
<typeAlias alias="excellog" type="NP.Model.excellog, NP.Model" />
<typeAlias alias="comcode" type="NP.Model.ComCode, NP.Model" />
<typeAlias alias="file" type="NP.Model.File, NP.Model" />
<typeAlias alias="ncs" type="NP.Model.NCS, NP.Model" />
@ -22,6 +23,7 @@
<resultMaps></resultMaps>
<statements>
<select id ="sys.menu.auths" parameterClass="hashtable" resultClass="userauth">
select distinct usertype,authname
,usertype value,authname text
@ -1345,5 +1347,12 @@
,#logmsg#
);
</update>
<!--인덕이에 엑셀 insert into 문 -->
<insert id="excellog.in" parameterClass="excellog">
INSERT INTO exceldownlog (userno, username, actiontime, position, comment, userip)
VALUES ( #userno#, #username#, sysdate(), #position#, #comment#, #userip#);
</insert>
<!--인덕이에 엑셀 insert into 문 끝-->
</statements>
</sqlMap>