240 发简信
IP属地:香港
  • IDEA快捷键

    行尾自动加分号 ctrl+shift+enter 任意内容查找 double shift

  • Resize,w 360,h 240
    IDEA注释模板设置

    一、设置IDEA中类的模板 File-->settings-->Editor-->File and Code Templates-->Files...

  • Git配置SSHKey

    一、设置Git的user name和email git config --global user.name "xuhaiyan"git conf...

  • Vim快捷键

    ########################################################################...

  • Resize,w 360,h 240
    Deepin15.4搭建Odoo开发环境

    一、安装环境及软件 操作系统: Deepin15.4 64位数据库: Postgresql9.6源码: 10.0社区版 二、安装数据库 D...

  • Deepin安装JDK

    Deepin15.4基于Debian8(Jessie) 下载文件 jdk-8u144-linux-x64.tar.gz 解压缩文件 tar -z...

  • Ubuntu下命令行操作Postgresql

    切换到postgres用户下:sudo su - postgres 连接数据库, 默认的用户和数据库是postgres psql -U user...

  • ORM之字段属性对象Field

    字段属性对象Field Model的字段属性对应数据表中的相应字段,pg表中不同的字段有不同类型,Odoo也为其封装了相应的类型对象 Field...

  • ORM之模型对象Model

    模型对象Model Odoo的模型对象在odoo模块的models.py文件中,最基础的对象是BaseModel;Odoo的模型对象有三个:Ab...