StoreSchedule.php 821 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * 厦门云联储网络科技有限公司
  4. * https://www.baokuaiyun.com
  5. * Copyright (c) 2023 爆块云 All rights reserved.
  6. */
  7. namespace app\models;
  8. /**
  9. * Class StoreMini
  10. * @package app\models
  11. * @property integer $id
  12. * @property string $merchant_info
  13. * @property integer $store_id
  14. * @property integer $audit_id
  15. **/
  16. class StoreSchedule extends \yii\db\ActiveRecord
  17. {
  18. public function rules()
  19. {
  20. return [
  21. [["id", "store_id",'audit_id'],'integer'],
  22. [["merchant_info"],'string']
  23. ];
  24. }
  25. public function attributeLabels(){
  26. return [
  27. "id"=> "主键",
  28. "merchant_info"=> "商户信息",
  29. "store_id"=> "商城ID",
  30. "audit_id"=> "申请单ID"
  31. ];
  32. }
  33. }