fastchar-extjs-systemtool.1.2.2.source-code.fastchar-database-systemtool.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs-systemtool Show documentation
Show all versions of fastchar-extjs-systemtool Show documentation
FastChar-ExtJs-SystemTool is a FastChar-ExtJs plugin.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE database> <database name="*"> <table name="final_log_exception" comment="系统异常日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="exception" comment="异常信息" index="true" type="longtext" render="Content" nullable="null"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_action_request" comment="系统请求日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="remoteUrl" comment="客户端IP" type="varchar" nullable="null" length="500"/> <column name="remoteClient" comment="客户端信息" type="text" nullable="null"/> <column name="actionClass" comment="Action类名" type="varchar" nullable="null" length="500"/> <column name="requestUrl" comment="请求的地址" type="varchar" nullable="null" length="500"/> <column name="requestData" comment="提交的数据" type="longtext" nullable="null" index="true"/> <column name="responseData" comment="返回的数据" type="longtext" nullable="null" index="true"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_sql" comment="系统SQL日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="sqlValue" comment="执行的Sql" index="true" type="text" render="Content" nullable="null"/> <column name="sqlParams" comment="执行Sql的参数" index="true" type="text" render="Content" nullable="null"/> <column name="sqlResult" comment="受影响行数" index="true" type="int" length="11" nullable="null"/> <column name="sqlBuildTime" comment="构建耗时(秒)" index="true" type="decimal" length="11,4" nullable="null"/> <column name="sqlRunTime" comment="执行耗时(秒)" index="true" type="decimal" length="11,4" nullable="null"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_http" comment="系统HTTP日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="httpCode" comment="请求标识" index="true" type="varchar" length="50" nullable="null"/> <column name="httpUrl" comment="请求地址" index="true" type="varchar" length="500" nullable="null"/> <column name="httpMethod" comment="请求方法" index="true" type="varchar" length="50" nullable="null"/> <column name="httpParams" comment="请求参数" index="true" type="longtext" nullable="null" render="Json"/> <column name="httpHeaders" comment="请求头信息" index="true" type="text" nullable="null" render="Json"/> <column name="httpResult" comment="请求结果" type="longtext" render="Json" nullable="null"/> <column name="httpUsedTime" comment="请求耗时(毫秒)" type="int" length="11" nullable="null"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_selenium" comment="系统HttpDriver日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="httpCode" comment="请求标识" index="true" type="varchar" length="50" nullable="null"/> <column name="httpUrl" comment="请求地址" index="true" type="varchar" length="500" nullable="null"/> <column name="httpResult" comment="请求结果" type="longtext" render="HtmlContent" nullable="null"/> <column name="httpUsedTime" comment="请求耗时(毫秒)" type="int" length="11" nullable="null"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_socket_client" comment="系统Socket连接日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="socketCode" comment="Socket标识" index="true" type="varchar" length="50" nullable="null"/> <column name="socketClientUrl" comment="Socket客户端地址" index="true" type="varchar" length="500" nullable="null"/> <column name="socketType" comment="Socket类型" type="varchar" nullable="null" length="100"/> <column name="socketState" comment="Socket状态" type="varchar" nullable="null"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_socket_message" comment="系统Socket消息日志" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="socketCode" comment="Socket标识" index="true" type="varchar" length="50" nullable="null"/> <column name="socketClientUrl" comment="Socket客户端地址" index="true" type="varchar" length="500" nullable="null"/> <column name="socketType" comment="Socket类型" type="varchar" nullable="null" length="100"/> <column name="socketMessageType" comment="消息类型" type="varchar" nullable="null" length="100"/> <column name="socketMessage" comment="Socket消息" type="longtext" render="HtmlContent" nullable="null"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> <table name="final_log_thread" comment="系统线程运行记录" layer="logLayerCode"> <column name="logId" comment="编号" type="varchar" length="150" primary="true" nullable="not null" version="2" /> <column name="threadName" comment="线程名称" index="true" type="varchar" length="500" nullable="null" /> <column name="threadId" comment="线程ID" index="true" type="varchar" length="500" nullable="null"/> <column name="threadState" comment="线程状态" type="varchar" nullable="null" length="200" index="true"/> <column name="threadElapsed" comment="线程运行时间(秒)" type="double" nullable="null" length="11,2"/> <column name="threadStack" comment="堆栈信息" type="longtext" nullable="null" index="true"/> <column name="logDateTime" comment="录入时间" type="datetime" length="6" nullable="null" index="true"/> </table> </database>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy