最新服务器上的版本,以后用这个
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
 
namespace app\models;
 
use Yii;
use yii\db\Exception;
 
/**
 * This is the model class for table "{{%share_order_log}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property string $share_setting 分销设置情况
 * @property string $order_share_info 订单分销情况
 * @property string $created_at
 */
class ShareOrderLog extends ModelActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%share_order_log}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'share_setting', 'order_share_info', 'created_at'], 'required'],
            [['mall_id'], 'integer'],
            [['share_setting', 'order_share_info'], 'string'],
            [['created_at'], 'safe'],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'share_setting' => '分销设置情况',
            'order_share_info' => '订单分销情况',
            'created_at' => 'Created At',
        ];
    }
 
    /**
     * @param $shareSetting array|string 分销设置情况
     * @param $orderShareInfo array|string 订单分销情况
     * @param $mallId integer 商城ID
     * @return bool
     * @throws Exception
     */
    public static function create($shareSetting, $orderShareInfo, $mallId)
    {
        if (!$shareSetting) {
            throw new Exception('$shareSetting不能为空');
        }
 
        if (!$orderShareInfo) {
            throw new Exception('$shareSetting不能为空');
        }
 
        if (is_array($shareSetting)) {
            $shareSetting = Yii::$app->serializer->encode($shareSetting);
        }
 
        if (is_array($orderShareInfo)) {
            $orderShareInfo = Yii::$app->serializer->encode($orderShareInfo);
        }
 
        $model = new self();
        $model->mall_id = $mallId;
        $model->share_setting = $shareSetting;
        $model->order_share_info = $orderShareInfo;
        $model->created_at = mysql_timestamp();
        return $model->save();
    }
}