mp/IoT-sensor/functions/dbFunctions.js
newtbot c00a57d5f6 iot sensor finished
1)with validation on front and backend
2)fixed seed route generating value 0 for data
2024-01-14 02:43:27 +08:00

23 lines
482 B
JavaScript

const { locationModel } = require("../Database/locationModel");
const { sensorModel } = require("../Database/sensorModel");
async function getLocation() {
const location = locationModel.findAll({
raw: true,
order: [["id", "ASC"]],
attributes: ["id"],
});
return location;
}
async function getSensor() {
const sensor = sensorModel.findAll({
raw: true,
order: [["id", "ASC"]],
attributes: ["id"],
});
return sensor;
}
module.exports = { getLocation, getSensor };