PushLog.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * 厦门云联储网络科技有限公司
  4. * https://www.baokuaiyun.com
  5. * Copyright (c) 2023 爆块云 All rights reserved.
  6. */
  7. /*
  8. * @Author: 凯
  9. * @Date: 2021-04-21 14:31:46
  10. * @LastEditTime: 2021-04-23 11:09:41
  11. * @LastEditors: Please set LastEditors
  12. * @Description: In User Settings Edit
  13. * @FilePath: \admin_php\models\SupplierNotice.php
  14. */
  15. namespace app\models;
  16. use Yii;
  17. /**
  18. * @description:
  19. * @property string $order_no
  20. * @property integer $type
  21. * @property integer $created_at
  22. * agent_examine
  23. */
  24. class PushLog extends \yii\db\ActiveRecord
  25. {
  26. /**
  27. * {@inheritdoc}
  28. */
  29. public static function tableName()
  30. {
  31. return '{{%push_log}}';
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. public function rules()
  37. {
  38. return [
  39. [
  40. ['order_no'],
  41. 'string'
  42. ],
  43. ];
  44. }
  45. /**
  46. * {@inheritdoc}
  47. */
  48. public function attributeLabels()
  49. {
  50. return [
  51. 'id' => 'ID',
  52. 'order_no' => '订单号',
  53. 'type' => '类型',
  54. 'addtime' => '添加时间',
  55. ];
  56. }
  57. }