salix/modules/item/back/models/item-barcode.json

28 lines
432 B
JSON
Raw Normal View History

{
"name": "ItemBarcode",
2019-03-12 10:47:53 +00:00
"base": "Loggable",
"options": {
"mysql": {
2018-12-17 10:28:39 +00:00
"table": "itemBarcode"
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
"id": true,
"description": "Identifier"
},
"code": {
2022-05-12 07:47:47 +00:00
"type": "string",
"required": true
}
},
"relations": {
"item": {
"type": "belongsTo",
"model": "Item",
"foreignKey": "itemFk"
}
}
}