最新服务器上的版本,以后用这个
zhangmeng
2023-04-19 e3f5aa12f58d986098a9de0f5cb38060e403036d
commit | author | age
2207d6 1 <?php
W 2
3 namespace app\models;
4
5 use Yii;
6
7 /**
8  * This is the model class for table "{{%mall_member_orders}}".
9  *
10  * @property int $id
11  * @property int $user_id
12  * @property int $mall_id
13  * @property string $order_no 订单号
14  * @property string $pay_price 支付金额
15  * @property int $pay_type 支付方式 1.线上支付
16  * @property int $is_pay 是否支付 0--未支付 1--支付
17  * @property string $pay_time 支付时间
18  * @property string $detail 会员更新详情
19  * @property string $created_at
20  * @property string $updated_at
21  * @property string $deleted_at
22  * @property int $is_delete
23  */
24 class MallMemberOrders extends ModelActiveRecord
25 {
26     /**
27      * 支付方式: 线上支付
28      */
29     const PAY_TYPE_ON_LINE = 1;
30
31     /**
32      * {@inheritdoc}
33      */
34     public static function tableName()
35     {
36         return '{{%mall_member_orders}}';
37     }
38
39     /**
40      * {@inheritdoc}
41      */
42     public function rules()
43     {
44         return [
45             [['user_id', 'mall_id', 'pay_price', 'pay_type', 'detail',
46                 'created_at', 'updated_at', 'deleted_at'], 'required'],
47             [['user_id', 'mall_id', 'pay_type', 'is_pay', 'is_delete'], 'integer'],
48             [['pay_price'], 'number'],
49             [['pay_time', 'created_at', 'updated_at', 'deleted_at'], 'safe'],
50             [['detail'], 'string'],
51             [['order_no'], 'string', 'max' => 30],
52         ];
53     }
54
55     /**
56      * {@inheritdoc}
57      */
58     public function attributeLabels()
59     {
60         return [
61             'id' => 'ID',
62             'user_id' => 'User ID',
63             'mall_id' => 'Mall ID',
64             'order_no' => 'Order No',
65             'pay_price' => 'Pay Price',
66             'pay_type' => 'Pay Type',
67             'is_pay' => 'Is Pay',
68             'pay_time' => 'Pay Time',
69             'detail' => 'Detail',
70             'created_at' => 'Created At',
71             'updated_at' => 'Updated At',
72             'deleted_at' => 'Deleted At',
73             'is_delete' => 'Is Delete',
74         ];
75     }
76
77     public function getUser()
78     {
79         return $this->hasOne(User::className(), ['id' => 'user_id']);
80     }
81 }