handle dimension

This commit is contained in:
2024-02-11 15:50:43 +03:00
parent 969ef726eb
commit 8dad392451
13 changed files with 479 additions and 27 deletions

View File

@ -1,5 +1,11 @@
namespace internal.encoding.fbs;
struct Dimensions {
width:float;
height:float;
length:float;
}
table GoodItem {
sku:string;
photo:string;
@ -14,6 +20,7 @@ table GoodItem {
tariff:float;
cart:long;
stock:short;
sizes:Dimensions;
parameters:string;
created_at:long;
}