const Codes = require('../../../PG/model/codes') async function getCodeListByTypeId(type_id) { return type_id ? await Codes.query().where('type_id', type_id) : await Codes.query() } module.exports = { getCodeListByTypeId, }