| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.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_log}}".
- *
- * @property integer $id
- */
- class ErpInventoryLog extends \yii\db\ActiveRecord
- {
-
- const LOG_TYPE_ORDER = 0; //订单
- const LOG_TYPE_PURCHASEIN = 1; //入库
- const LOG_TYPE_PURCHASEOUT = 2; //出库
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%erp_inventory_log}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- }
|