20], [['name', 'phone', 'tag'], 'string', 'max' => 50], [['province', 'city', 'dist'], 'string', 'max' => 100], [['address', 'fullAddress'], 'string', 'max' => 500], [['floor'], 'string', 'max' => 50], [['showAddress'], 'string', 'max' => 900], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'userId' => 'User ID', 'name' => 'Name', 'phone' => 'Phone', 'tag' => 'Tag', 'lat' => 'Lat', 'long' => 'Long', 'province' => 'Province', 'city' => 'City', 'dist' => 'Dist', 'address' => 'Address', 'floor' => 'Floor', 'fullAddress' => 'Full Address', 'showAddress' => 'Show Address', 'default' => 'Default', 'addTime' => 'Add Time', 'updateTime' => 'Update Time', ]; } }