easy-db

简单的数据库操作工具

Usage no npm install needed!

<script type="module">
  import easyDb from 'https://cdn.skypack.dev/easy-db';
</script>

README

easydb

Example

function admin_role(){
    this.adminroleid=0;

    this.__rolename="角色名称"//描述
    this.rolename="40";//length

    this.remark="255";
    this.__remark="备注";
    this.__remark_default="";//默认值

    this.testm=12.2;//decimal(12 ,2)
    this.__testm_default=12.3;
}

module.exports=admin_role;