Ejemplo n.º 1
0
 /**
  * GoodsAct::actPurchaseList()
  * 列出所有采购人员信息
  * @param string $where 查询条件
  * @return array 结果集数组
  */
 public function actPurchaseList($where = '1')
 {
     $result = goodsModel::modPurchaseList($where);
     self::$errCode = goodsModel::$errCode;
     self::$errMsg = goodsModel::$errMsg;
     return $result;
 }