| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- /*
- * @Author: 凯
- * @Date: 2021-04-21 14:31:46
- * @LastEditTime: 2021-04-23 11:09:41
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: \admin_php\models\SupplierNotice.php
- */
- namespace app\models;
- use Yii;
- /**
- * @description:
- * @property integer $supp_order_submit
- * @property integer $supp_order_send
- * @property integer $supp_order_overdue
- * agent_examine
- */
- class SupplierNotice extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%supplier_notice}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [
- ['supp_order_submit', 'supp_order_send', 'supp_order_overdue'],
- 'string'
- ],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'supp_id' => 'Supp ID',
- 'supp_order_submit' => '订单提交通知',
- 'supp_order_send' => '提醒发货通知',
- 'supp_order_overdue' => '提醒预期发货通知',
- ];
- }
- }
|