12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
![]() |
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,
|
||
|
}
|