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.
|
- <?php
- /**
- * Created by PhpStorm.
- * User: tianlionfire
- * Date: 2017/11/23
- * Time: 14:37
- */
-
- namespace backend\modules\zzcs\logic;
-
-
- use backend\modules\zzcs\models\OrderMain;
-
- class ContractManage
- {
- /**
- * Function Description:获取自由行合同需要的信息
- * Function Name: getContractMsg
- * @param $order_id
- * @return array|null|\yii\db\ActiveRecord
- * @author 田玲菲
- */
- public function getContractMsg($order_id){
- $orderMain = new OrderMain();
- $result = $orderMain->getContractInfo($order_id);
- return $result;
- }
- }
|