| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- class AlipayMarketingMaterial extends ActiveRecord
- {
- public static function tableName()
- {
- return '{{%alipay_marketing_material}}';
- }
- public function behaviors()
- {
- return [
- [
- // 自动更新创建和更新时间
- 'class' => TimestampBehavior::class,
- 'value' => null
- ]
- ];
- }
- public function rules()
- {
- return [
- [['id', 'material_id', 'store_id', 'mini_id'], 'integer'],
- [['create_at', 'update_at', 'is_delete', 'material_name', 'info_json'], 'safe']
- ];
- }
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'mini_id' => 'store_id',
- 'store_id' => 'store_id',
- 'material_id' => '素材id',
- 'material_name' => '素材名称',
- 'info_json' => '素材详情',
- 'is_delete' => '删除',
- 'create_at' => '创建时间',
- 'update_at' => '更新时间',
- ];
- }
- }
|