| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- namespace app\models;
- use yii\behaviors\TimestampBehavior;
- /**
- * Class StoreMiniToken
- * @package app\models
- * @property integer $id
- * @property integer $saas_id
- * @property string $remark
- * @property integer $status
- * @property integer $is_delete
- * @property string $created_at
- * @property string $updated_at
- **/
- class StoreOperations extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_operations}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "saas_id", "is_delete", 'status'], 'integer'],
- [["remark", "created_at", "updated_at"], 'string'],
- ];
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => '',
- 'saas_id' => '联盟用户id',
- 'remark' => '备注',
- 'status' => '状态0禁用 1启用',
- 'is_delete' => '',
- 'created_at' => '',
- 'updated_at' => '',
- ];
- }
- }
|