This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
const con = require('./connect');
|
|
|
|
module.exports = function selectCollectionSmartTag(collectionFk) {
|
|
const sql = `SELECT * FROM vn.collectionSmartTag WHERE collectionFk = ?;`;
|
|
return con.query(sql, collectionFk);
|
|
};
|
|
|