| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%erp_inventory_prop_log}}".
- *
- * @property integer $id
- */
- class ErpInventoryPropLog extends \yii\db\ActiveRecord
- {
-
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%erp_inventory_prop_log}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- }
|