dataLists(); } /** * @notes 获取变动类型 * @return \think\response\Json * @author Tab * @date 2021/8/12 15:41 */ public function getChangeType() { return $this->data(AccountLogEnum::getChangeTypeDesc('',true)); } /** * @notes 获取不可提现余额变动类型 * @return \think\response\Json * @author Tab * @date 2021/8/25 20:29 */ public function getBnwChangeType() { return $this->data(AccountLogEnum::getBnwChangeTypeDesc()); } /** * @notes 获取积分类型描述 * @return \think\response\Json * @author Tab * @date 2021/8/25 20:29 */ public function getIntegralChangeType() { return $this->data(AccountLogEnum::getIntegralChangeTypeDesc()); } /** * @notes 获取可提现余额变动类型 * @return \think\response\Json * @author 段誉 * @date 2022/3/28 11:14 */ public function getBwChangeType() { return $this->data(AccountLogEnum::getBWChangeTypeDesc()); } }