| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class StoreMini
- * @package app\models
- * @property integer $id
- * @property string $merchant_info
- * @property integer $store_id
- * @property integer $audit_id
- **/
- class StoreSchedule extends \yii\db\ActiveRecord
- {
- public function rules()
- {
- return [
- [["id", "store_id",'audit_id'],'integer'],
- [["merchant_info"],'string']
- ];
- }
- public function attributeLabels(){
- return [
- "id"=> "主键",
- "merchant_info"=> "商户信息",
- "store_id"=> "商城ID",
- "audit_id"=> "申请单ID"
- ];
- }
- }
|