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