> * @since 1.0.0 */ protected static array $columns = [ 'row_id' => ['name' => 'row_id', 'type' => 'int', 'internal' => 'id'], 'row_create_time' => ['name' => 'row_create_time', 'type' => 'DateTime', 'internal' => 'createdAt'], 'row_create_user' => ['name' => 'row_create_user', 'type' => 'int', 'internal' => 'createdBy'], 'Kundennummer' => ['name' => 'Kundennummer', 'type' => 'string', 'internal' => 'number'], ]; protected static array $ownsOne = [ 'mainAddress' => [ 'mapper' => GSDAddressMapper::class, 'src' => 'AddressId', ], ]; /** * Primary table. * * @var string * @since 1.0.0 */ protected static string $table = 'Kunden'; /** * Created at. * * @var string * @since 1.0.0 */ protected static string $createdAt = 'row_create_time'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static string $primaryField = 'row_id'; }