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

fastchar-pay.1.6.0.source-code.fast-database-pay.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database>
<database name="*">

    <table name="final_pay_order" comment="支付订单">

        <column name="payOrderId" comment="编号" type="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <column name="userId" comment="所属用户" type="int" nullable="null"
                length="11" index="true"/>

        <column name="payOrderCode" comment="订单编号" type="varchar"
                nullable="null" length="500" index="true"/>

        <column name="payOrderTitle" comment="订单标题" type="varchar"
                nullable="null" length="500"/>

        <column name="payOrderMoney" comment="订单金额" type="double"
                nullable="null" length="11,2"/>

        <column name="payOrderData" comment="订单数据" type="text"
                nullable="null"/>

        <column name="payOrderState" comment="订单状态" type="int"
                nullable="null" length="11" index="true" render="Enum"/>

        <column name="payOrderType" comment="支付类型" type="int"
                nullable="null" length="11" index="true" render="Enum"/>

        <column name="payOrderBack" comment="回调状态" type="int"
                nullable="null" length="11" index="true" render="Enum"/>

        <column name="payConfigCode" comment="支付通道配置Key" type="varchar"
                nullable="null" length="500"/>

        <column name="orderDateTime" comment="录入时间" type="datetime"
                nullable="null" length="6" render="NONE"/>
    </table>

    <table name="final_pay_error" comment="支付密码错误">
        <column name="errorId" comment="编号" type="int" length="11"
                primary="true" autoincrement="true" nullable="not null"/>

        <column name="userId" comment="所属用户" type="int" nullable="null"
                length="11" index="true"/>

        <column name="errorDateTime" comment="录入时间" type="datetime"
                nullable="null" length="6" render="NONE"/>

    </table>


    <table name="final_wx_authorize" comment="微信授权信息">
        <column name="openid" comment="openid" type="varchar"
                length="500" nullable="null" index="true"/>

        <column name="nickname" comment="nickname" type="varchar"
                length="500" nullable="null" />

        <column name="headimgurl" comment="headimgurl" type="varchar"
                length="500" nullable="null"/>

        <column name="sex" comment="sex" type="int" length="11"
                nullable="null"/>

        <column name="province" comment="province" type="varchar"
                length="500" nullable="null"/>

        <column name="city" comment="city" type="varchar" length="500"
                nullable="null"/>

        <column name="country" comment="country" type="varchar"
                length="500" nullable="null"/>

        <column name="unionid" comment="unionid" type="varchar"
                length="500" nullable="null"/>

    </table>


    <table name="final_ali_authorize" comment="支付宝授权信息">
        <column name="avatar" comment="avatar" type="varchar"
                length="500" nullable="null"/>

        <column name="city" comment="city" type="varchar" length="500"
                nullable="null"/>

        <column name="gender" comment="gender" type="varchar"
                length="500" nullable="null"/>

        <column name="is_certified" comment="is_certified" type="varchar"
                length="500" nullable="null"/>

        <column name="is_student_certified" comment="is_student_certified"
                type="varchar" length="500" nullable="null"/>

        <column name="nick_name" comment="nick_name" type="varchar"
                length="500" nullable="null" />

        <column name="province" comment="province" type="varchar"
                length="500" nullable="null"/>

        <column name="user_id" comment="user_id" type="varchar"
                length="500" nullable="null"/>
        <column name="user_status" comment="user_status" type="varchar"
                length="500" nullable="null"/>
        <column name="user_type" comment="user_type" type="varchar"
                length="500" nullable="null"/>
    </table>


</database>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy