Browse Source

增加市场经理提现

master
lanzu_qsy 5 years ago
parent
commit
f1d3aafc6f
  1. 70
      app/Admin/Controllers/LanzuMmWithdrawController.php
  2. 16
      app/Admin/Repositories/LanzuMmWithdraw.php
  3. 1
      app/Admin/routes.php
  4. 16
      app/Models/LanzuMmWithdraw.php
  5. 1
      app/Models/LanzuMpWithdraw.php
  6. 13
      app/Models/MpWithdraw.php
  7. 164
      dcat_admin_ide_helper.php
  8. 13
      resources/lang/zh-CN/lanzu-mm-withdraw.php

70
app/Admin/Controllers/LanzuMmWithdrawController.php

@ -0,0 +1,70 @@
<?php
namespace App\Admin\Controllers;
use App\Admin\Repositories\LanzuMmWithdraw;
use Dcat\Admin\Form;
use Dcat\Admin\Grid;
use Dcat\Admin\Show;
use Dcat\Admin\Controllers\AdminController;
use Encore\Admin\Facades\Admin;
use Illuminate\Support\Facades\Auth;
class LanzuMmWithdrawController extends AdminController
{
/**
* Make a grid builder.
*
* @return Grid
*/
protected function grid()
{
return Grid::make(new LanzuMmWithdraw(), function (Grid $grid) {
$grid->id->sortable();
$grid->mm_id('提现');
$grid->money;
$grid->status('提现状态');
$grid->created_at('提现时间');
$grid->filter(function (Grid\Filter $filter) {
$filter->equal('id');
});
});
}
/**
* Make a show builder.
*
* @param mixed $id
*
* @return Show
*/
protected function detail($id)
{
return Show::make($id, new LanzuMmWithdraw(), function (Show $show) {
$show->id;
$show->mm_id;
$show->money;
$show->status;
$show->created_at;
$show->updated_at;
});
}
/**
* Make a form builder.
*
* @return Form
*/
protected function form()
{
return Form::make(new LanzuMmWithdraw(), function (Form $form) {
$form->display('id');
$form->text('mm_id');
$form->text('money');
$form->display('created_at');
$form->display('updated_at');
});
}
}

16
app/Admin/Repositories/LanzuMmWithdraw.php

@ -0,0 +1,16 @@
<?php
namespace App\Admin\Repositories;
use App\Models\LanzuMmWithdraw as Model;
use Dcat\Admin\Repositories\EloquentRepository;
class LanzuMmWithdraw extends EloquentRepository
{
/**
* Model.
*
* @var string
*/
protected $eloquentClass = Model::class;
}

1
app/Admin/routes.php

@ -18,6 +18,7 @@ Route::group([
$router->resource('/mm', 'LanzuMmInfoController');
$router->resource('/market', 'ImsCjdcMarketController');
$router->resource('/mp_withdraw', 'LanzuMpWithdrawController');
$router->resource('/mm_withdraw', 'LanzuMmWithdrawController');
$router->any('/api/getMarket', 'LanzuMmInfoController@getMarket');
$router->any('/api/getMpInfo', 'ImsCjdcMarketController@getMpInfo');

16
app/Models/LanzuMmWithdraw.php

@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Dcat\Admin\Traits\HasDateTimeFormatter;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Model;
class LanzuMmWithdraw extends Model
{
use HasDateTimeFormatter;
use SoftDeletes;
protected $table = 'lanzu_mm_withdraw';
}

1
app/Models/LanzuMpWithdraw.php

@ -13,4 +13,5 @@ class LanzuMpWithdraw extends Model
protected $table = 'lanzu_mp_withdraw';
}

13
app/Models/MpWithdraw.php

@ -1,13 +0,0 @@
<?php
namespace App\Models;
use Dcat\Admin\Traits\HasDateTimeFormatter;
use Illuminate\Database\Eloquent\Model;
class MpWithdraw extends Model
{
protected $table = 'lanzu_mp_withdraw';
protected $dateFormat = 'U';
}

164
dcat_admin_ide_helper.php

@ -44,7 +44,27 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection id_number
* @property Grid\Column|Collection admin_user_id
* @property Grid\Column|Collection status
* @property Grid\Column|Collection market_id
* @property Grid\Column|Collection is_del
* @property Grid\Column|Collection logo
* @property Grid\Column|Collection address
* @property Grid\Column|Collection introduce
* @property Grid\Column|Collection imgs
* @property Grid\Column|Collection addtime
* @property Grid\Column|Collection sort
* @property Grid\Column|Collection coordinates
* @property Grid\Column|Collection remark
* @property Grid\Column|Collection poundage
* @property Grid\Column|Collection dn_poundage
* @property Grid\Column|Collection dm_poundage
* @property Grid\Column|Collection yd_poundage
* @property Grid\Column|Collection dada_number
* @property Grid\Column|Collection is_open_dada
* @property Grid\Column|Collection loudspeaker_imei
* @property Grid\Column|Collection dishes_menu_intro
* @property Grid\Column|Collection create_time
* @property Grid\Column|Collection mp_id
* @property Grid\Column|Collection money
* @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection order
* @property Grid\Column|Collection icon
@ -68,7 +88,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection createtime
* @property Grid\Column|Collection updatetime
* @property Grid\Column|Collection token
* @property Grid\Column|Collection market_id
* @property Grid\Column|Collection admin_id
* @property Grid\Column|Collection url
* @property Grid\Column|Collection content
@ -98,7 +117,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection group_id
* @property Grid\Column|Collection type
* @property Grid\Column|Collection condition
* @property Grid\Column|Collection remark
* @property Grid\Column|Collection ismenu
* @property Grid\Column|Collection weigh
* @property Grid\Column|Collection flag
@ -137,7 +155,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection gender
* @property Grid\Column|Collection birthday
* @property Grid\Column|Collection bio
* @property Grid\Column|Collection money
* @property Grid\Column|Collection score
* @property Grid\Column|Collection successions
* @property Grid\Column|Collection maxsuccessions
@ -207,7 +224,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection weid
* @property Grid\Column|Collection qq
* @property Grid\Column|Collection dist
* @property Grid\Column|Collection address
* @property Grid\Column|Collection industry1
* @property Grid\Column|Collection industry2
* @property Grid\Column|Collection from_user
@ -225,7 +241,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection is_notice_service
* @property Grid\Column|Collection is_notice_boss
* @property Grid\Column|Collection authority
* @property Grid\Column|Collection logo
* @property Grid\Column|Collection src
* @property Grid\Column|Collection src2
* @property Grid\Column|Collection created_time
@ -279,12 +294,10 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection fe_dycode
* @property Grid\Column|Collection xx_sn
* @property Grid\Column|Collection tag_name
* @property Grid\Column|Collection sort
* @property Grid\Column|Collection son_id
* @property Grid\Column|Collection note
* @property Grid\Column|Collection sn
* @property Grid\Column|Collection simnum
* @property Grid\Column|Collection addtime
* @property Grid\Column|Collection fx_details
* @property Grid\Column|Collection tx_details
* @property Grid\Column|Collection is_fx
@ -374,18 +387,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection waimai_pay_temp
* @property Grid\Column|Collection dangmian_pay_temp
* @property Grid\Column|Collection ziti_pay_temp
* @property Grid\Column|Collection introduce
* @property Grid\Column|Collection imgs
* @property Grid\Column|Collection coordinates
* @property Grid\Column|Collection poundage
* @property Grid\Column|Collection dn_poundage
* @property Grid\Column|Collection dm_poundage
* @property Grid\Column|Collection yd_poundage
* @property Grid\Column|Collection dada_number
* @property Grid\Column|Collection is_open_dada
* @property Grid\Column|Collection loudspeaker_imei
* @property Grid\Column|Collection dishes_menu_intro
* @property Grid\Column|Collection create_time
* @property Grid\Column|Collection deleted_at
* @property Grid\Column|Collection sender
* @property Grid\Column|Collection is_email
* @property Grid\Column|Collection xd_tid
@ -1151,6 +1153,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection money_type
* @property Grid\Column|Collection source_type
* @property Grid\Column|Collection comment
* @property Grid\Column|Collection mm_id
* @property Grid\Column|Collection c_attitude
* @property Grid\Column|Collection c_service
* @property Grid\Column|Collection c_quality
@ -1195,7 +1198,27 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection id_number(string $label = null)
* @method Grid\Column|Collection admin_user_id(string $label = null)
* @method Grid\Column|Collection status(string $label = null)
* @method Grid\Column|Collection market_id(string $label = null)
* @method Grid\Column|Collection is_del(string $label = null)
* @method Grid\Column|Collection logo(string $label = null)
* @method Grid\Column|Collection address(string $label = null)
* @method Grid\Column|Collection introduce(string $label = null)
* @method Grid\Column|Collection imgs(string $label = null)
* @method Grid\Column|Collection addtime(string $label = null)
* @method Grid\Column|Collection sort(string $label = null)
* @method Grid\Column|Collection coordinates(string $label = null)
* @method Grid\Column|Collection remark(string $label = null)
* @method Grid\Column|Collection poundage(string $label = null)
* @method Grid\Column|Collection dn_poundage(string $label = null)
* @method Grid\Column|Collection dm_poundage(string $label = null)
* @method Grid\Column|Collection yd_poundage(string $label = null)
* @method Grid\Column|Collection dada_number(string $label = null)
* @method Grid\Column|Collection is_open_dada(string $label = null)
* @method Grid\Column|Collection loudspeaker_imei(string $label = null)
* @method Grid\Column|Collection dishes_menu_intro(string $label = null)
* @method Grid\Column|Collection create_time(string $label = null)
* @method Grid\Column|Collection mp_id(string $label = null)
* @method Grid\Column|Collection money(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection icon(string $label = null)
@ -1219,7 +1242,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection createtime(string $label = null)
* @method Grid\Column|Collection updatetime(string $label = null)
* @method Grid\Column|Collection token(string $label = null)
* @method Grid\Column|Collection market_id(string $label = null)
* @method Grid\Column|Collection admin_id(string $label = null)
* @method Grid\Column|Collection url(string $label = null)
* @method Grid\Column|Collection content(string $label = null)
@ -1249,7 +1271,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection group_id(string $label = null)
* @method Grid\Column|Collection type(string $label = null)
* @method Grid\Column|Collection condition(string $label = null)
* @method Grid\Column|Collection remark(string $label = null)
* @method Grid\Column|Collection ismenu(string $label = null)
* @method Grid\Column|Collection weigh(string $label = null)
* @method Grid\Column|Collection flag(string $label = null)
@ -1288,7 +1309,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection gender(string $label = null)
* @method Grid\Column|Collection birthday(string $label = null)
* @method Grid\Column|Collection bio(string $label = null)
* @method Grid\Column|Collection money(string $label = null)
* @method Grid\Column|Collection score(string $label = null)
* @method Grid\Column|Collection successions(string $label = null)
* @method Grid\Column|Collection maxsuccessions(string $label = null)
@ -1358,7 +1378,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection weid(string $label = null)
* @method Grid\Column|Collection qq(string $label = null)
* @method Grid\Column|Collection dist(string $label = null)
* @method Grid\Column|Collection address(string $label = null)
* @method Grid\Column|Collection industry1(string $label = null)
* @method Grid\Column|Collection industry2(string $label = null)
* @method Grid\Column|Collection from_user(string $label = null)
@ -1376,7 +1395,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection is_notice_service(string $label = null)
* @method Grid\Column|Collection is_notice_boss(string $label = null)
* @method Grid\Column|Collection authority(string $label = null)
* @method Grid\Column|Collection logo(string $label = null)
* @method Grid\Column|Collection src(string $label = null)
* @method Grid\Column|Collection src2(string $label = null)
* @method Grid\Column|Collection created_time(string $label = null)
@ -1430,12 +1448,10 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection fe_dycode(string $label = null)
* @method Grid\Column|Collection xx_sn(string $label = null)
* @method Grid\Column|Collection tag_name(string $label = null)
* @method Grid\Column|Collection sort(string $label = null)
* @method Grid\Column|Collection son_id(string $label = null)
* @method Grid\Column|Collection note(string $label = null)
* @method Grid\Column|Collection sn(string $label = null)
* @method Grid\Column|Collection simnum(string $label = null)
* @method Grid\Column|Collection addtime(string $label = null)
* @method Grid\Column|Collection fx_details(string $label = null)
* @method Grid\Column|Collection tx_details(string $label = null)
* @method Grid\Column|Collection is_fx(string $label = null)
@ -1525,18 +1541,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection waimai_pay_temp(string $label = null)
* @method Grid\Column|Collection dangmian_pay_temp(string $label = null)
* @method Grid\Column|Collection ziti_pay_temp(string $label = null)
* @method Grid\Column|Collection introduce(string $label = null)
* @method Grid\Column|Collection imgs(string $label = null)
* @method Grid\Column|Collection coordinates(string $label = null)
* @method Grid\Column|Collection poundage(string $label = null)
* @method Grid\Column|Collection dn_poundage(string $label = null)
* @method Grid\Column|Collection dm_poundage(string $label = null)
* @method Grid\Column|Collection yd_poundage(string $label = null)
* @method Grid\Column|Collection dada_number(string $label = null)
* @method Grid\Column|Collection is_open_dada(string $label = null)
* @method Grid\Column|Collection loudspeaker_imei(string $label = null)
* @method Grid\Column|Collection dishes_menu_intro(string $label = null)
* @method Grid\Column|Collection create_time(string $label = null)
* @method Grid\Column|Collection deleted_at(string $label = null)
* @method Grid\Column|Collection sender(string $label = null)
* @method Grid\Column|Collection is_email(string $label = null)
* @method Grid\Column|Collection xd_tid(string $label = null)
@ -2302,6 +2307,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection money_type(string $label = null)
* @method Grid\Column|Collection source_type(string $label = null)
* @method Grid\Column|Collection comment(string $label = null)
* @method Grid\Column|Collection mm_id(string $label = null)
* @method Grid\Column|Collection c_attitude(string $label = null)
* @method Grid\Column|Collection c_service(string $label = null)
* @method Grid\Column|Collection c_quality(string $label = null)
@ -2351,7 +2357,27 @@ namespace Dcat\Admin {
* @property Show\Field|Collection id_number
* @property Show\Field|Collection admin_user_id
* @property Show\Field|Collection status
* @property Show\Field|Collection market_id
* @property Show\Field|Collection is_del
* @property Show\Field|Collection logo
* @property Show\Field|Collection address
* @property Show\Field|Collection introduce
* @property Show\Field|Collection imgs
* @property Show\Field|Collection addtime
* @property Show\Field|Collection sort
* @property Show\Field|Collection coordinates
* @property Show\Field|Collection remark
* @property Show\Field|Collection poundage
* @property Show\Field|Collection dn_poundage
* @property Show\Field|Collection dm_poundage
* @property Show\Field|Collection yd_poundage
* @property Show\Field|Collection dada_number
* @property Show\Field|Collection is_open_dada
* @property Show\Field|Collection loudspeaker_imei
* @property Show\Field|Collection dishes_menu_intro
* @property Show\Field|Collection create_time
* @property Show\Field|Collection mp_id
* @property Show\Field|Collection money
* @property Show\Field|Collection parent_id
* @property Show\Field|Collection order
* @property Show\Field|Collection icon
@ -2375,7 +2401,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection createtime
* @property Show\Field|Collection updatetime
* @property Show\Field|Collection token
* @property Show\Field|Collection market_id
* @property Show\Field|Collection admin_id
* @property Show\Field|Collection url
* @property Show\Field|Collection content
@ -2405,7 +2430,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection group_id
* @property Show\Field|Collection type
* @property Show\Field|Collection condition
* @property Show\Field|Collection remark
* @property Show\Field|Collection ismenu
* @property Show\Field|Collection weigh
* @property Show\Field|Collection flag
@ -2444,7 +2468,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection gender
* @property Show\Field|Collection birthday
* @property Show\Field|Collection bio
* @property Show\Field|Collection money
* @property Show\Field|Collection score
* @property Show\Field|Collection successions
* @property Show\Field|Collection maxsuccessions
@ -2514,7 +2537,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection weid
* @property Show\Field|Collection qq
* @property Show\Field|Collection dist
* @property Show\Field|Collection address
* @property Show\Field|Collection industry1
* @property Show\Field|Collection industry2
* @property Show\Field|Collection from_user
@ -2532,7 +2554,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection is_notice_service
* @property Show\Field|Collection is_notice_boss
* @property Show\Field|Collection authority
* @property Show\Field|Collection logo
* @property Show\Field|Collection src
* @property Show\Field|Collection src2
* @property Show\Field|Collection created_time
@ -2586,12 +2607,10 @@ namespace Dcat\Admin {
* @property Show\Field|Collection fe_dycode
* @property Show\Field|Collection xx_sn
* @property Show\Field|Collection tag_name
* @property Show\Field|Collection sort
* @property Show\Field|Collection son_id
* @property Show\Field|Collection note
* @property Show\Field|Collection sn
* @property Show\Field|Collection simnum
* @property Show\Field|Collection addtime
* @property Show\Field|Collection fx_details
* @property Show\Field|Collection tx_details
* @property Show\Field|Collection is_fx
@ -2681,18 +2700,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection waimai_pay_temp
* @property Show\Field|Collection dangmian_pay_temp
* @property Show\Field|Collection ziti_pay_temp
* @property Show\Field|Collection introduce
* @property Show\Field|Collection imgs
* @property Show\Field|Collection coordinates
* @property Show\Field|Collection poundage
* @property Show\Field|Collection dn_poundage
* @property Show\Field|Collection dm_poundage
* @property Show\Field|Collection yd_poundage
* @property Show\Field|Collection dada_number
* @property Show\Field|Collection is_open_dada
* @property Show\Field|Collection loudspeaker_imei
* @property Show\Field|Collection dishes_menu_intro
* @property Show\Field|Collection create_time
* @property Show\Field|Collection deleted_at
* @property Show\Field|Collection sender
* @property Show\Field|Collection is_email
* @property Show\Field|Collection xd_tid
@ -3458,6 +3466,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection money_type
* @property Show\Field|Collection source_type
* @property Show\Field|Collection comment
* @property Show\Field|Collection mm_id
* @property Show\Field|Collection c_attitude
* @property Show\Field|Collection c_service
* @property Show\Field|Collection c_quality
@ -3502,7 +3511,27 @@ namespace Dcat\Admin {
* @method Show\Field|Collection id_number(string $label = null)
* @method Show\Field|Collection admin_user_id(string $label = null)
* @method Show\Field|Collection status(string $label = null)
* @method Show\Field|Collection market_id(string $label = null)
* @method Show\Field|Collection is_del(string $label = null)
* @method Show\Field|Collection logo(string $label = null)
* @method Show\Field|Collection address(string $label = null)
* @method Show\Field|Collection introduce(string $label = null)
* @method Show\Field|Collection imgs(string $label = null)
* @method Show\Field|Collection addtime(string $label = null)
* @method Show\Field|Collection sort(string $label = null)
* @method Show\Field|Collection coordinates(string $label = null)
* @method Show\Field|Collection remark(string $label = null)
* @method Show\Field|Collection poundage(string $label = null)
* @method Show\Field|Collection dn_poundage(string $label = null)
* @method Show\Field|Collection dm_poundage(string $label = null)
* @method Show\Field|Collection yd_poundage(string $label = null)
* @method Show\Field|Collection dada_number(string $label = null)
* @method Show\Field|Collection is_open_dada(string $label = null)
* @method Show\Field|Collection loudspeaker_imei(string $label = null)
* @method Show\Field|Collection dishes_menu_intro(string $label = null)
* @method Show\Field|Collection create_time(string $label = null)
* @method Show\Field|Collection mp_id(string $label = null)
* @method Show\Field|Collection money(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection icon(string $label = null)
@ -3526,7 +3555,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection createtime(string $label = null)
* @method Show\Field|Collection updatetime(string $label = null)
* @method Show\Field|Collection token(string $label = null)
* @method Show\Field|Collection market_id(string $label = null)
* @method Show\Field|Collection admin_id(string $label = null)
* @method Show\Field|Collection url(string $label = null)
* @method Show\Field|Collection content(string $label = null)
@ -3556,7 +3584,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection group_id(string $label = null)
* @method Show\Field|Collection type(string $label = null)
* @method Show\Field|Collection condition(string $label = null)
* @method Show\Field|Collection remark(string $label = null)
* @method Show\Field|Collection ismenu(string $label = null)
* @method Show\Field|Collection weigh(string $label = null)
* @method Show\Field|Collection flag(string $label = null)
@ -3595,7 +3622,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection gender(string $label = null)
* @method Show\Field|Collection birthday(string $label = null)
* @method Show\Field|Collection bio(string $label = null)
* @method Show\Field|Collection money(string $label = null)
* @method Show\Field|Collection score(string $label = null)
* @method Show\Field|Collection successions(string $label = null)
* @method Show\Field|Collection maxsuccessions(string $label = null)
@ -3665,7 +3691,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection weid(string $label = null)
* @method Show\Field|Collection qq(string $label = null)
* @method Show\Field|Collection dist(string $label = null)
* @method Show\Field|Collection address(string $label = null)
* @method Show\Field|Collection industry1(string $label = null)
* @method Show\Field|Collection industry2(string $label = null)
* @method Show\Field|Collection from_user(string $label = null)
@ -3683,7 +3708,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection is_notice_service(string $label = null)
* @method Show\Field|Collection is_notice_boss(string $label = null)
* @method Show\Field|Collection authority(string $label = null)
* @method Show\Field|Collection logo(string $label = null)
* @method Show\Field|Collection src(string $label = null)
* @method Show\Field|Collection src2(string $label = null)
* @method Show\Field|Collection created_time(string $label = null)
@ -3737,12 +3761,10 @@ namespace Dcat\Admin {
* @method Show\Field|Collection fe_dycode(string $label = null)
* @method Show\Field|Collection xx_sn(string $label = null)
* @method Show\Field|Collection tag_name(string $label = null)
* @method Show\Field|Collection sort(string $label = null)
* @method Show\Field|Collection son_id(string $label = null)
* @method Show\Field|Collection note(string $label = null)
* @method Show\Field|Collection sn(string $label = null)
* @method Show\Field|Collection simnum(string $label = null)
* @method Show\Field|Collection addtime(string $label = null)
* @method Show\Field|Collection fx_details(string $label = null)
* @method Show\Field|Collection tx_details(string $label = null)
* @method Show\Field|Collection is_fx(string $label = null)
@ -3832,18 +3854,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection waimai_pay_temp(string $label = null)
* @method Show\Field|Collection dangmian_pay_temp(string $label = null)
* @method Show\Field|Collection ziti_pay_temp(string $label = null)
* @method Show\Field|Collection introduce(string $label = null)
* @method Show\Field|Collection imgs(string $label = null)
* @method Show\Field|Collection coordinates(string $label = null)
* @method Show\Field|Collection poundage(string $label = null)
* @method Show\Field|Collection dn_poundage(string $label = null)
* @method Show\Field|Collection dm_poundage(string $label = null)
* @method Show\Field|Collection yd_poundage(string $label = null)
* @method Show\Field|Collection dada_number(string $label = null)
* @method Show\Field|Collection is_open_dada(string $label = null)
* @method Show\Field|Collection loudspeaker_imei(string $label = null)
* @method Show\Field|Collection dishes_menu_intro(string $label = null)
* @method Show\Field|Collection create_time(string $label = null)
* @method Show\Field|Collection deleted_at(string $label = null)
* @method Show\Field|Collection sender(string $label = null)
* @method Show\Field|Collection is_email(string $label = null)
* @method Show\Field|Collection xd_tid(string $label = null)
@ -4609,6 +4620,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection money_type(string $label = null)
* @method Show\Field|Collection source_type(string $label = null)
* @method Show\Field|Collection comment(string $label = null)
* @method Show\Field|Collection mm_id(string $label = null)
* @method Show\Field|Collection c_attitude(string $label = null)
* @method Show\Field|Collection c_service(string $label = null)
* @method Show\Field|Collection c_quality(string $label = null)

13
resources/lang/zh-CN/lanzu-mm-withdraw.php

@ -0,0 +1,13 @@
<?php
return [
'labels' => [
'LanzuMmWithdraw' => 'LanzuMmWithdraw',
],
'fields' => [
'mm_id' => '关联的市场经理id',
'money' => '提现金额',
'status' => '提现状态 0/1/-1 待审核/已同意/已拒绝',
],
'options' => [
],
];
Loading…
Cancel
Save