static associate(models) {
models.tb_transfer_list.belongsTo(models.tb_displayed_safety, {
as: 'transfer_list_belongs_to_tb_displayed_safety',
foreignKey: 'equipmentId', // <--- I want to replace string this column
targetKey: 'stuffId',
});
}
};