| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- /*
- * @Author: 凯
- * @Date: 2021-04-21 14:31:46
- * @LastEditTime: 2021-04-23 11:35:36
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: \admin_php\models\SupplierNoticeLog.php
- */
- namespace app\models;
- use Yii;
- /**
- * @description:
- * @property integer $supp_id
- * @property string $err_msg
- * @property integer $type
- * @property integer $user_id
- * @property string $data
- * @property integer $addtime
- */
- class SupplierNoticeLog extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%supplier_notice_log}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [
- ['err_msg', 'data'],'string'
- ],
- [
- ['type', 'user_id'],'integer'
- ],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'supp_id' => '供货商ID',
- 'user_id' => '用户ID',
- 'order_no' => '订单号',
- 'type' => '1 小程序订阅消息 2 公众号订阅消息 3短信',
- 'data' => '错误参数',
- 'err_msg'=> '接口返回',
- 'addtime' => '添加时间',
- 'goods_info' => '商品数据',
- 'order_price' => '订单总额',
- 'status' => '1 成功 2 失败',
- 'send_type' => '1 提交订单 2 待发货通知 3 逾期通知',
- ];
- }
- }
|