Storebanklist.php 861 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * 厦门云联储网络科技有限公司
  4. * https://www.baokuaiyun.com
  5. * Copyright (c) 2023 爆块云 All rights reserved.
  6. */
  7. namespace app\models;
  8. /**
  9. * @description:
  10. * @property string $short_name
  11. * @property string $huifu_id
  12. * agent_examine
  13. */
  14. class Storebanklist extends \yii\db\ActiveRecord
  15. {
  16. /**
  17. * {@inheritdoc}
  18. */
  19. public static function tableName()
  20. {
  21. return '{{%storebanklist}}';
  22. }
  23. /**
  24. * {@inheritdoc}
  25. */
  26. public function rules()
  27. {
  28. return [
  29. [[ 'short_name', 'huifu_id'], 'string'],
  30. [['id'], 'integer']
  31. ];
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. public function attributeLabels()
  37. {
  38. return [
  39. 'id' => 'ID',
  40. 'short_name' => '商户名称',
  41. 'huifu_id' => '商户号',
  42. ];
  43. }
  44. }