You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
591 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: tianlionfire
  5. * Date: 2017/11/23
  6. * Time: 14:37
  7. */
  8. namespace backend\modules\zzcs\logic;
  9. use backend\modules\zzcs\models\OrderMain;
  10. class ContractManage
  11. {
  12. /**
  13. * Function Description:获取自由行合同需要的信息
  14. * Function Name: getContractMsg
  15. * @param $order_id
  16. * @return array|null|\yii\db\ActiveRecord
  17. * @author 田玲菲
  18. */
  19. public function getContractMsg($order_id){
  20. $orderMain = new OrderMain();
  21. $result = $orderMain->getContractInfo($order_id);
  22. return $result;
  23. }
  24. }