All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fastchar-systemtool.1.0.1.source-code.fast-database-systemtool.xml Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show 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="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <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="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <column name="remoteUrl" comment="客户端IP" type="varchar"
                nullable="null" length="500"/>

        <column name="remoteClient" comment="客户端信息" type="text"
                nullable="null" charset="utf8mb4"/>

        <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" charset="utf8mb4" index="true"/>

        <column name="responseData" comment="返回的数据" type="longtext"
                nullable="null" charset="utf8mb4" 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="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <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="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <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="text" 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="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <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>



</database>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy