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.
2021-03-25 08:33:53 +00:00
|
|
|
const con = require('./connect');
|
|
|
|
|
2022-04-01 12:17:36 +00:00
|
|
|
module.exports = function selectTicket(ticket) {
|
|
|
|
const sql = `SELECT * FROM vn.collectionSmartTag WHERE ticketFk = ?`;
|
|
|
|
return con.query(sql, ticket);
|
|
|
|
};
|
2021-03-25 08:33:53 +00:00
|
|
|
|