| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace addons\Community\common\models;
- use Yii;
- /**
- * This is the model class for table "qimall_addons_community_sign_log".
- *
- * @property int $id 主键
- * @property int $status 状态[-1:删除;0:禁用;1启用]
- * @property int $created_at 创建时间
- * @property int $updated_at 修改时间
- * @property int $mall_id 所属子系统
- * @property int $user_id 核销用户
- * @property int $order_id 核销的订单
- * @property int $head_id 自提点ID
- * @property int $buyer_user_id 买家ID
- */
- class CommunitySignLog extends \common\models\base\BaseActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'qimall_addons_community_sign_log';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['status', 'created_at', 'updated_at', 'mall_id', 'user_id', 'order_id', 'head_id', 'buyer_user_id'], 'integer'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'status' => 'Status',
- 'created_at' => 'Created At',
- 'updated_at' => 'Updated At',
- 'mall_id' => 'Mall ID',
- 'user_id' => 'User ID',
- 'order_id' => 'Order ID',
- 'head_id' => 'Head ID',
- 'buyer_user_id' => 'Buyer User ID',
- ];
- }
- }
|