feat: refs #8175 updateLibraries

This commit is contained in:
Sergio De la torre 2024-12-02 18:16:35 +01:00
parent f16bb64b49
commit 40dedad49f
1 changed files with 18 additions and 0 deletions

View File

@ -27,3 +27,21 @@ class ItemBuyerVO(
class ItemBuyerListVO(
var list: List<ItemBuyerVO> = listOf()
)
data class BuyerList(
var list: List<Buyer> = listOf()
)
data class Buyer(
val itemPackingTypeFk: String,
val worker: Worker
)
data class Worker(
val user: User
)
data class User(
val id: Int,
val nickname: String
)