LOG_ID,
USER_ID,
INTM,
CONTENT,
PATH,
SRC,
IP_ADDR,
APP_MODEL,REQUEST_BODY,RESPONSE_BODY,METHOD,PARAMS,HEADER,ORG_ID
A.LOG_ID,
A.USER_ID,
A.INTM,
A.CONTENT,
A.PATH,
A.SRC,
A.IP_ADDR,
A.APP_MODEL,A.REQUEST_BODY,A.METHOD,A.PARAMS,A.HEADER,A.ORG_ID,
B.PERS_NAME
#{logId},
#{userId},
#{intm},
#{content},
#{path},
#{source},
#{ipAddr},
#{appModel},#{requestBody},#{responseBody},#{method},#{params},#{header},#{orgId}
and USER_ID = #{userId}
and INTM = #{intm}
and CONTENT = #{content}
and PATH = #{path}
and SRC = #{source}
and IP_ADDR = #{ipAddr}
and APP_MODEL = #{appModel}
and METHOD = #{method}
and ORG_ID = #{orgId}
and A.USER_ID = #{userId}
and A.INTM >= #{sttm}
and A.INTM <= #{entm}
and B.pers_name like '%' || #{username} || '%'
and A.CONTENT like '%' || #{content} || '%'
and A.PATH = #{path}
and A.SRC = #{source}
and A.IP_ADDR = #{ipAddr}
and A.APP_MODEL = #{appModel}
and A.METHOD = #{method}
and A.ORG_ID = #{orgId}
insert into BIS_INSP_LOG(
)
values (
)
insert into BIS_INSP_DEL_LOG(
)
values (
)
delete from BIS_INSP_LOG where LOG_ID = #{id}
delete from BIS_INSP_LOG
update BIS_INSP_LOG set flag_valid = 0 where LOG_ID = #{id}
update BIS_INSP_LOG
USER_ID = #{userId},
INTM = #{intm},
CONTENT = #{content},
PATH = #{path},
SRC = #{source},
IP_ADDR = #{ipAddr},
APP_MODEL = #{appModel},
METHOD = #{method},
REQUEST_BODY = #{requestBody},
RESPONSE_BODY = #{responseBody},
PARAMS = #{params},
HEADER = #{header},
LOG_ID = #{id}
update BIS_INSP_LOG
USER_ID = #{userId},
INTM = #{intm},
CONTENT = #{content},
PATH = #{path},
SRC = #{source},
IP_ADDR = #{ipAddr},
APP_MODEL = #{appModel},
METHOD = #{method},
REQUEST_BODY = #{requestBody},
RESPONSE_BODY = #{responseBody},
PARAMS = #{params},
HEADER = #{header},