最新服务器上的版本,以后用这个
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 "{{%user_coupon_member}}".
9  *
10  * @property int $id
11  * @property int $mall_id
12  * @property int $user_id
13  * @property int $member_level 会员等级
14  * @property int $user_coupon_id
15  * @property int $is_delete
16  */
17 class UserCouponMember extends \app\models\ModelActiveRecord
18 {
19     /**
20      * {@inheritdoc}
21      */
22     public static function tableName()
23     {
24         return '{{%user_coupon_member}}';
25     }
26
27     /**
28      * {@inheritdoc}
29      */
30     public function rules()
31     {
32         return [
33             [['mall_id', 'user_id', 'user_coupon_id', 'is_delete'], 'required'],
34             [['mall_id', 'user_id', 'member_level', 'user_coupon_id', 'is_delete'], 'integer'],
35         ];
36     }
37
38     /**
39      * {@inheritdoc}
40      */
41     public function attributeLabels()
42     {
43         return [
44             'id' => 'ID',
45             'mall_id' => 'Mall ID',
46             'user_id' => 'User ID',
47             'member_level' => '会员等级',
48             'user_coupon_id' => 'User Coupon ID',
49             'is_delete' => 'Is Delete',
50         ];
51     }
52 }