BookMark.associate = function (models) {
        BookMark.belongsTo(models.Article, { foreignKey: 'articleId' })
        BookMark.belongsTo(models.user, { foreignKey: 'userId' })
    };