HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/elite/coordParser/CommimAddressModel.php
<?php

namespace coordParser;

/**
 * @property int $obj_id
 * @property string $addr_build
 * @property string $addr_print
 * @property string $obj_type_name
 * @property string $prf_name
 * @property string $addr_whole_nmb
 * @property string $addr_letter
 * @property string $flat_number
 * @property string $obj_kd_nmb
 * @property string $reg_name
 * @property float $obj_area
 * @property string $obj_reestr_num
 * @property string $obj_reestr_num_date
 * @property string $pravo
 * @property string $purpose_name
 * @property string $encumbrance_name
 * @property string $city_part
 * @property string $land_cadastr_cost
 * @property string $book_cost_value
 * @property string $residual_cost_value
 * @property string $residual_cost_date
 * @property string $details
 * @property float $longitude
 * @property float $latitude
 * @property int $choice
 * @property string $images
 * @property string $coords
 * @property float $ng_longitude
 * @property float $ng_latitude
 */
class CommimAddressModel
{

    const TYPE_PLOT = 'Земельный участок';

    public static array $columns = [
        'obj_id',
        //'addr_build',
        'addr_print',
        'obj_type_name',
        //'prf_name',
        //'addr_whole_nmb',
        //'addr_letter',
        //'flat_number',
        'obj_kd_nmb',
        'reg_name',
        'obj_area',
        //'obj_reestr_num',
        //'obj_reestr_num_date',
        'pravo',
        'purpose_name',
        'encumbrance_name',
        //'city_part',
        'land_cadastr_cost',
        //'book_cost_value',
        //'residual_cost_value',
        //'residual_cost_date',
        //'details',
        'longitude',
        'latitude',
        'choice',
        'images',
        //'coords',
        'ng_longitude',
        'ng_latitude',
    ];

}