LocalChancelList.php 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 $name
  11. * @property string $company_name
  12. * @property integer $create_time
  13. * agent_examine
  14. */
  15. class LocalChancelList extends \yii\db\ActiveRecord
  16. {
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public static function tableName()
  21. {
  22. return '{{%localchancellist}}';
  23. }
  24. /**
  25. * {@inheritdoc}
  26. */
  27. public function rules()
  28. {
  29. return [
  30. [[ 'name','company_name'], 'string'],
  31. [['id', 'create_time'], 'integer']
  32. ];
  33. }
  34. /**
  35. * {@inheritdoc}
  36. */
  37. public function attributeLabels()
  38. {
  39. return [
  40. 'id' => 'ID',
  41. 'name' => '渠道号名称',
  42. 'company_name' => '公司名称',
  43. 'create_time' => '创建时间',
  44. ];
  45. }
  46. }