255], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'mall_id' => 'Mall ID', 'user_id' => 'User ID', 'type' => '类型:1=收入,2=支出', 'money' => '变动金额', 'desc' => '变动说明', 'custom_desc' => '自定义详细说明', 'order_no' => '订单号', 'created_at' => 'Created At', ]; } public function getUser() { return $this->hasOne(User::className(), ['id' => 'user_id']); } }