Add price type selection modal and backend functionality for addresses

This commit is contained in:
2025-12-02 07:35:26 +01:00
parent 62b0381db7
commit d328f1791c
5 changed files with 192 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
<?php
class AddressPriceTypeModel extends TTCrudBaseModel {
public int $id;
public int $address_id;
public int $priceType_id;
public int $create;
public int $createBy;
}