30], [['third_order_no'], 'string', 'max' => 50], [['last_req'], 'string', 'max' => 255], [['last_resp'], 'string'] ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'mall_id' => 'Mall ID', 'created_at' => 'Created At', 'updated_at' => 'Updated At', 'status' => 'Status', 'order_id' => 'Order ID', 'order_no' => 'Order No', 'refund_id' => 'Refund ID', 'refund_no' => 'Refund No', 'third_order_no' => 'Third Order No', 'third_refund_id' => 'Third Refund ID', 'content' => 'Content', 'post' => 'Post', 'order_detail_id' => 'Order Detail ID', 'refund_status' => 'Refund Status', 'third_detail' => 'Third Detail', ]; } public function getRefund() { return $this->hasOne(OrderRefund::class, ['id' => 'refund_id']); } }