| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace addons\WechatVideoShop\common\models;
- use Yii;
- /**
- * This is the model class for table "qimall_addons_wechat_video_shop_express_company".
- *
- * @property int $id
- * @property int $status 状态[1启用 0禁用 -1删除]
- * @property int $created_at 创建时间
- * @property int $updated_at 更新事件
- * @property int $company_id 本地快递公司ID
- * @property string $delivery_id 快递公司编码
- * @property string $delivery_name 快递公司名称
- */
- class WechatVideoShopExpressCompany extends \common\models\base\BaseActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'qimall_addons_wechat_video_shop_express_company';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['status', 'created_at', 'updated_at', 'company_id'], 'integer'],
- [['delivery_id', 'delivery_name'], 'string', 'max' => 10],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'status' => 'Status',
- 'created_at' => 'Created At',
- 'updated_at' => 'Updated At',
- 'company_id' => 'Company ID',
- 'delivery_id' => 'Delivery ID',
- 'delivery_name' => 'Delivery Name',
- ];
- }
- }
|