public function goodspropertyAction()
 {
     $typeId = intval($this->_getParam('typeId'));
     $goodsProperty = new GoodsTypePropertyModel();
     $goodsProperty->where = array('type_id' => $typeId);
     $propertyList = $goodsProperty->getList(array('property_id', 'property_name'))->toarray();
     echo json_encode($propertyList);
     $this->_helper->viewRenderer->setNoRender();
 }