ProfitLog.php 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * 厦门云联储网络科技有限公司
  4. * https://www.baokuaiyun.com
  5. * Copyright (c) 2023 爆块云 All rights reserved.
  6. */
  7. namespace app\models;
  8. use Yii;
  9. /**
  10. * This is the model class for table "{{%color}}".
  11. *
  12. * @property integer $id
  13. * @property integer $store_id
  14. * @property integer $user_id
  15. * @property integer $type
  16. * @property string $price
  17. * @property integer $is_delete
  18. * @property integer $addtime
  19. */
  20. class ProfitLog extends \yii\db\ActiveRecord
  21. {
  22. /**
  23. * @inheritdoc
  24. */
  25. public static function tableName()
  26. {
  27. return '{{%profit_log}}';
  28. }
  29. /**
  30. * @inheritdoc
  31. */
  32. public function attributeLabels()
  33. {
  34. return [
  35. 'id' => 'ID',
  36. 'store_id' => 'store_id',
  37. 'user_id' => 'user_id',
  38. 'type' => 'type',
  39. 'price' => 'price',
  40. 'is_delete' => 'Is Delete',
  41. 'addtime' => 'Addtime',
  42. ];
  43. }
  44. }