| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * GoodsBrowse.php
- * todo 文件描述
- * Created on 2025/5/21 10:08
- * @author: hankaige
- */
- namespace app\models;
- class GoodsBrowse extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%goods_browse}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['goods_id','level'], 'required'],
- [['goods_id', 'level'], 'integer'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'goods_id' => '商品id',
- 'level' => '商品对应会员等级',
- ];
- }
- }
|