| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- /**
- * Class RulesFaceStore
- * @property integer $id
- * @property integer $rule_id
- * @property integer $store_id
- * @property integer $created_at
- */
- class RulesFaceStore extends ActiveRecord
- {
- public static function tableName()
- {
- return '{{%rules_face_store}}';
- }
- public function rules()
- {
- return [
- [["id", "rule_id", "store_id", "created_at"], 'integer'],
- ];
- }
- public function attributeLabels()
- {
- return [
- "id" => "",
- "rule_id" => "规则ID",
- "store_id" => "店铺ID",
- "created_at" => "创建时间",
- ];
- }
- }
|