| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace common\logic\order\marketing;
- use common\traits\ErrorTrait;
- use Exception;
- abstract class BaseMarketing{
- use ErrorTrait;
- public $marketing = [
- 'give' => [
- 'score' =>[
- 'give_val' => 10
- ],
- ],
- 'deduct' => [
- 'score' => [
- 'name' => '积分',
- 'deduct_val' => 100,
- 'money' => 1
- ],
- 'shipping_fee' => [
- 'name' => '运费',
- 'money' => 10
- ],
- 'full_reduce' => [
- 'name' => '满减',
- 'money' => 10
- ],
- ]
- ];
- public $isNewRecord = false; // 是否是新增操作
- /**
- * 执行
- * @Author bing
- * @DateTime 2021-09-23 09:46:41
- * @copyright: Copyright (c) 2020 广东七件事集团
- * @param $form
- * @return
- */
- abstract public function execute($form);
-
- }
|