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 selectTicket(ticket) {
|
|
const sql = `SELECT * FROM vn.collectionSmartTag WHERE ticketFk = ?`;
|
|
return con.query(sql, ticket);
|
|
};
|
|
|