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',
];
}