2018-02-14 13:22:35 +00:00
|
|
|
{
|
2018-02-19 10:55:45 +00:00
|
|
|
"name": "ItemBarcode",
|
2023-12-05 06:48:56 +00:00
|
|
|
"base": "VnModel",
|
|
|
|
"mixins": {
|
|
|
|
"Loggable": true
|
|
|
|
},
|
2018-02-19 10:55:45 +00:00
|
|
|
"options": {
|
|
|
|
"mysql": {
|
2018-12-17 10:28:39 +00:00
|
|
|
"table": "itemBarcode"
|
2018-02-14 13:22:35 +00:00
|
|
|
}
|
2018-02-19 10:55:45 +00:00
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number",
|
2018-02-19 10:55:45 +00:00
|
|
|
"id": true,
|
|
|
|
"description": "Identifier"
|
2018-02-14 13:22:35 +00:00
|
|
|
},
|
2018-02-19 10:55:45 +00:00
|
|
|
"code": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string",
|
2018-02-19 10:55:45 +00:00
|
|
|
"required": true
|
2018-02-14 13:22:35 +00:00
|
|
|
}
|
2018-02-19 10:55:45 +00:00
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"item": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Item",
|
|
|
|
"foreignKey": "itemFk"
|
2023-04-12 10:33:14 +00:00
|
|
|
}
|
2018-02-14 13:22:35 +00:00
|
|
|
}
|
2018-02-19 10:55:45 +00:00
|
|
|
}
|