SupplierNotice.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 integer $supp_order_submit
  20. * @property integer $supp_order_send
  21. * @property integer $supp_order_overdue
  22. * agent_examine
  23. */
  24. class SupplierNotice extends \yii\db\ActiveRecord
  25. {
  26. /**
  27. * {@inheritdoc}
  28. */
  29. public static function tableName()
  30. {
  31. return '{{%supplier_notice}}';
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. public function rules()
  37. {
  38. return [
  39. [
  40. ['supp_order_submit', 'supp_order_send', 'supp_order_overdue'],
  41. 'string'
  42. ],
  43. ];
  44. }
  45. /**
  46. * {@inheritdoc}
  47. */
  48. public function attributeLabels()
  49. {
  50. return [
  51. 'id' => 'ID',
  52. 'supp_id' => 'Supp ID',
  53. 'supp_order_submit' => '订单提交通知',
  54. 'supp_order_send' => '提醒发货通知',
  55. 'supp_order_overdue' => '提醒预期发货通知',
  56. ];
  57. }
  58. }