Browse Source

增加骑手列表

master
lanzu_qsy 6 years ago
parent
commit
b468729be0
  1. 79
      app/Admin/Controllers/LanzuServiceHorsemanController.php
  2. 16
      app/Admin/Repositories/LanzuServiceHorseman.php
  3. 2
      app/Admin/routes.php
  4. 16
      app/Models/LanzuServiceHorseman.php
  5. 236
      dcat_admin_ide_helper.php
  6. 17
      resources/lang/zh-CN/lanzu-service-horseman.php

79
app/Admin/Controllers/LanzuServiceHorsemanController.php

@ -0,0 +1,79 @@
<?php
namespace App\Admin\Controllers;
use App\Admin\Repositories\LanzuServiceHorseman;
use App\Models\ImsCjdcMarket;
use Dcat\Admin\Form;
use Dcat\Admin\Grid;
use Dcat\Admin\Show;
use Dcat\Admin\Controllers\AdminController;
class LanzuServiceHorsemanController extends AdminController
{
/**
* Make a grid builder.
*
* @return Grid
*/
protected function grid()
{
return Grid::make(new LanzuServiceHorseman(), function (Grid $grid) {
$grid->id->sortable();
$grid->name;
$grid->tel;
$grid->market_id('所属市场');
$grid->status('状态');
$grid->head_url;
$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 LanzuServiceHorseman(), function (Show $show) {
$show->id;
$show->user_id;
$show->name;
$show->tel;
$show->market_id;
$show->status;
$show->qr_url;
$show->head_url;
$show->created_at;
$show->updated_at;
});
}
/**
* Make a form builder.
*
* @return Form
*/
protected function form()
{
return Form::make(new LanzuServiceHorseman(), function (Form $form) {
$form->display('id');
$form->text('user_id','懒ID')->required();
$form->text('name')->required();
$form->mobile('tel')->required();
$form->text('market_id','所属市场')->options(ImsCjdcMarket::getMarket())->required();
$form->radio('status','状态')->options([1=>'启用',-1=>'禁用'])->value(1)->required();
$form->image('head_url')->uniqueName();
$form->display('created_at');
$form->display('updated_at');
});
}
}

16
app/Admin/Repositories/LanzuServiceHorseman.php

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

2
app/Admin/routes.php

@ -47,5 +47,7 @@ Route::group([
$router->resource('/order', 'ImsCjdcOrderMainController'); $router->resource('/order', 'ImsCjdcOrderMainController');
$router->any('/detail', 'ImsCjdcOrderMainController@orderDetail'); $router->any('/detail', 'ImsCjdcOrderMainController@orderDetail');
$router->resource('/horseman', 'LanzuServiceHorsemanController');
$router->any('/test', 'Test@test'); $router->any('/test', 'Test@test');
}); });

16
app/Models/LanzuServiceHorseman.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 LanzuServiceHorseman extends Model
{
use HasDateTimeFormatter;
use SoftDeletes;
protected $table = 'lanzu_service_horseman';
}

236
dcat_admin_ide_helper.php

@ -69,14 +69,26 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection mm_id * @property Grid\Column|Collection mm_id
* @property Grid\Column|Collection admin_user_id * @property Grid\Column|Collection admin_user_id
* @property Grid\Column|Collection cs_id * @property Grid\Column|Collection cs_id
* @property Grid\Column|Collection type
* @property Grid\Column|Collection user_id
* @property Grid\Column|Collection desc
* @property Grid\Column|Collection activity * @property Grid\Column|Collection activity
* @property Grid\Column|Collection forward * @property Grid\Column|Collection forward
* @property Grid\Column|Collection repay * @property Grid\Column|Collection repay
* @property Grid\Column|Collection category
* @property Grid\Column|Collection value
* @property Grid\Column|Collection store_id
* @property Grid\Column|Collection store_name
* @property Grid\Column|Collection new_user_total
* @property Grid\Column|Collection mm_user_id
* @property Grid\Column|Collection order_num
* @property Grid\Column|Collection state
* @property Grid\Column|Collection time
* @property Grid\Column|Collection pay_time
* @property Grid\Column|Collection parent_id * @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection order * @property Grid\Column|Collection order
* @property Grid\Column|Collection icon * @property Grid\Column|Collection icon
* @property Grid\Column|Collection uri * @property Grid\Column|Collection uri
* @property Grid\Column|Collection user_id
* @property Grid\Column|Collection permission_id * @property Grid\Column|Collection permission_id
* @property Grid\Column|Collection menu_id * @property Grid\Column|Collection menu_id
* @property Grid\Column|Collection http_method * @property Grid\Column|Collection http_method
@ -122,7 +134,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection rules * @property Grid\Column|Collection rules
* @property Grid\Column|Collection uid * @property Grid\Column|Collection uid
* @property Grid\Column|Collection group_id * @property Grid\Column|Collection group_id
* @property Grid\Column|Collection type
* @property Grid\Column|Collection condition * @property Grid\Column|Collection condition
* @property Grid\Column|Collection ismenu * @property Grid\Column|Collection ismenu
* @property Grid\Column|Collection weigh * @property Grid\Column|Collection weigh
@ -135,7 +146,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection executetime * @property Grid\Column|Collection executetime
* @property Grid\Column|Collection group * @property Grid\Column|Collection group
* @property Grid\Column|Collection tip * @property Grid\Column|Collection tip
* @property Grid\Column|Collection value
* @property Grid\Column|Collection rule * @property Grid\Column|Collection rule
* @property Grid\Column|Collection extend * @property Grid\Column|Collection extend
* @property Grid\Column|Collection event * @property Grid\Column|Collection event
@ -158,7 +168,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection refreshtime * @property Grid\Column|Collection refreshtime
* @property Grid\Column|Collection deletetime * @property Grid\Column|Collection deletetime
* @property Grid\Column|Collection switch * @property Grid\Column|Collection switch
* @property Grid\Column|Collection state
* @property Grid\Column|Collection gender * @property Grid\Column|Collection gender
* @property Grid\Column|Collection birthday * @property Grid\Column|Collection birthday
* @property Grid\Column|Collection bio * @property Grid\Column|Collection bio
@ -178,11 +187,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection packagesize * @property Grid\Column|Collection packagesize
* @property Grid\Column|Collection downloadurl * @property Grid\Column|Collection downloadurl
* @property Grid\Column|Collection enforce * @property Grid\Column|Collection enforce
* @property Grid\Column|Collection connection
* @property Grid\Column|Collection queue
* @property Grid\Column|Collection payload
* @property Grid\Column|Collection exception
* @property Grid\Column|Collection failed_at
* @property Grid\Column|Collection acid * @property Grid\Column|Collection acid
* @property Grid\Column|Collection uniacid * @property Grid\Column|Collection uniacid
* @property Grid\Column|Collection hash * @property Grid\Column|Collection hash
@ -256,9 +260,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection item * @property Grid\Column|Collection item
* @property Grid\Column|Collection area_name * @property Grid\Column|Collection area_name
* @property Grid\Column|Collection num * @property Grid\Column|Collection num
* @property Grid\Column|Collection store_id
* @property Grid\Column|Collection stars * @property Grid\Column|Collection stars
* @property Grid\Column|Collection time
* @property Grid\Column|Collection order_id * @property Grid\Column|Collection order_id
* @property Grid\Column|Collection hf * @property Grid\Column|Collection hf
* @property Grid\Column|Collection hf_time * @property Grid\Column|Collection hf_time
@ -357,14 +359,12 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection display * @property Grid\Column|Collection display
* @property Grid\Column|Collection introduction * @property Grid\Column|Collection introduction
* @property Grid\Column|Collection hx_id * @property Grid\Column|Collection hx_id
* @property Grid\Column|Collection order_num
* @property Grid\Column|Collection goods_type * @property Grid\Column|Collection goods_type
* @property Grid\Column|Collection goods_num * @property Grid\Column|Collection goods_num
* @property Grid\Column|Collection pay_type * @property Grid\Column|Collection pay_type
* @property Grid\Column|Collection receive_name * @property Grid\Column|Collection receive_name
* @property Grid\Column|Collection receive_tel * @property Grid\Column|Collection receive_tel
* @property Grid\Column|Collection receive_address * @property Grid\Column|Collection receive_address
* @property Grid\Column|Collection pay_time
* @property Grid\Column|Collection cz_time * @property Grid\Column|Collection cz_time
* @property Grid\Column|Collection question * @property Grid\Column|Collection question
* @property Grid\Column|Collection answer * @property Grid\Column|Collection answer
@ -482,6 +482,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection combination_id * @property Grid\Column|Collection combination_id
* @property Grid\Column|Collection order_status * @property Grid\Column|Collection order_status
* @property Grid\Column|Collection update_time * @property Grid\Column|Collection update_time
* @property Grid\Column|Collection refund_time
* @property Grid\Column|Collection order_shipping_code * @property Grid\Column|Collection order_shipping_code
* @property Grid\Column|Collection shipping_name * @property Grid\Column|Collection shipping_name
* @property Grid\Column|Collection store_ids * @property Grid\Column|Collection store_ids
@ -493,6 +494,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection dada_status * @property Grid\Column|Collection dada_status
* @property Grid\Column|Collection print_num * @property Grid\Column|Collection print_num
* @property Grid\Column|Collection global_order_id * @property Grid\Column|Collection global_order_id
* @property Grid\Column|Collection plat
* @property Grid\Column|Collection mchid * @property Grid\Column|Collection mchid
* @property Grid\Column|Collection wxkey * @property Grid\Column|Collection wxkey
* @property Grid\Column|Collection apiclient_cert * @property Grid\Column|Collection apiclient_cert
@ -562,9 +564,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection store_mchid * @property Grid\Column|Collection store_mchid
* @property Grid\Column|Collection cash_code * @property Grid\Column|Collection cash_code
* @property Grid\Column|Collection store_wallet * @property Grid\Column|Collection store_wallet
* @property Grid\Column|Collection mm_user_id
* @property Grid\Column|Collection add_time * @property Grid\Column|Collection add_time
* @property Grid\Column|Collection category
* @property Grid\Column|Collection xyh_open * @property Grid\Column|Collection xyh_open
* @property Grid\Column|Collection is_jd * @property Grid\Column|Collection is_jd
* @property Grid\Column|Collection is_jfpay * @property Grid\Column|Collection is_jfpay
@ -697,7 +697,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection is_open_dada_fee * @property Grid\Column|Collection is_open_dada_fee
* @property Grid\Column|Collection menu_name * @property Grid\Column|Collection menu_name
* @property Grid\Column|Collection info * @property Grid\Column|Collection info
* @property Grid\Column|Collection desc
* @property Grid\Column|Collection tag * @property Grid\Column|Collection tag
* @property Grid\Column|Collection fw_cost * @property Grid\Column|Collection fw_cost
* @property Grid\Column|Collection zd_cost * @property Grid\Column|Collection zd_cost
@ -766,6 +765,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection minute * @property Grid\Column|Collection minute
* @property Grid\Column|Collection extra * @property Grid\Column|Collection extra
* @property Grid\Column|Collection tid * @property Grid\Column|Collection tid
* @property Grid\Column|Collection payload
* @property Grid\Column|Collection handled * @property Grid\Column|Collection handled
* @property Grid\Column|Collection total * @property Grid\Column|Collection total
* @property Grid\Column|Collection append_title * @property Grid\Column|Collection append_title
@ -1154,13 +1154,26 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection logo_url * @property Grid\Column|Collection logo_url
* @property Grid\Column|Collection success * @property Grid\Column|Collection success
* @property Grid\Column|Collection error * @property Grid\Column|Collection error
* @property Grid\Column|Collection cover_img
* @property Grid\Column|Collection qrcode_path * @property Grid\Column|Collection qrcode_path
* @property Grid\Column|Collection user_type * @property Grid\Column|Collection user_type
* @property Grid\Column|Collection money_type * @property Grid\Column|Collection money_type
* @property Grid\Column|Collection source_type * @property Grid\Column|Collection source_type
* @property Grid\Column|Collection comment * @property Grid\Column|Collection comment
* @property Grid\Column|Collection is_del
* @property Grid\Column|Collection goods_type_id
* @property Grid\Column|Collection on_sale
* @property Grid\Column|Collection is_infinite
* @property Grid\Column|Collection original_price
* @property Grid\Column|Collection vip_price
* @property Grid\Column|Collection tags
* @property Grid\Column|Collection details_imgs
* @property Grid\Column|Collection is_operated * @property Grid\Column|Collection is_operated
* @property Grid\Column|Collection distribution_money
* @property Grid\Column|Collection refuse_note
* @property Grid\Column|Collection shipping_type
* @property Grid\Column|Collection coupon_money
* @property Grid\Column|Collection delivery_money
* @property Grid\Column|Collection delivery_status
* @property Grid\Column|Collection c_attitude * @property Grid\Column|Collection c_attitude
* @property Grid\Column|Collection c_service * @property Grid\Column|Collection c_service
* @property Grid\Column|Collection c_quality * @property Grid\Column|Collection c_quality
@ -1172,10 +1185,20 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection set_reward * @property Grid\Column|Collection set_reward
* @property Grid\Column|Collection device_name * @property Grid\Column|Collection device_name
* @property Grid\Column|Collection bind_time * @property Grid\Column|Collection bind_time
* @property Grid\Column|Collection store_type_id
* @property Grid\Column|Collection stall_info
* @property Grid\Column|Collection business_license
* @property Grid\Column|Collection expire_time
* @property Grid\Column|Collection time1
* @property Grid\Column|Collection pay_status
* @property Grid\Column|Collection apply_time
* @property Grid\Column|Collection store_applet_img
* @property Grid\Column|Collection cash_code_img
* @property Grid\Column|Collection nick_name
* @property Grid\Column|Collection real_name
* @property Grid\Column|Collection balance * @property Grid\Column|Collection balance
* @property Grid\Column|Collection bind_type * @property Grid\Column|Collection bind_type
* @property Grid\Column|Collection json_data * @property Grid\Column|Collection json_data
* @property Grid\Column|Collection email_verified_at
* *
* @method Grid\Column|Collection id(string $label = null) * @method Grid\Column|Collection id(string $label = null)
* @method Grid\Column|Collection username(string $label = null) * @method Grid\Column|Collection username(string $label = null)
@ -1235,14 +1258,26 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection mm_id(string $label = null) * @method Grid\Column|Collection mm_id(string $label = null)
* @method Grid\Column|Collection admin_user_id(string $label = null) * @method Grid\Column|Collection admin_user_id(string $label = null)
* @method Grid\Column|Collection cs_id(string $label = null) * @method Grid\Column|Collection cs_id(string $label = null)
* @method Grid\Column|Collection type(string $label = null)
* @method Grid\Column|Collection user_id(string $label = null)
* @method Grid\Column|Collection desc(string $label = null)
* @method Grid\Column|Collection activity(string $label = null) * @method Grid\Column|Collection activity(string $label = null)
* @method Grid\Column|Collection forward(string $label = null) * @method Grid\Column|Collection forward(string $label = null)
* @method Grid\Column|Collection repay(string $label = null) * @method Grid\Column|Collection repay(string $label = null)
* @method Grid\Column|Collection category(string $label = null)
* @method Grid\Column|Collection value(string $label = null)
* @method Grid\Column|Collection store_id(string $label = null)
* @method Grid\Column|Collection store_name(string $label = null)
* @method Grid\Column|Collection new_user_total(string $label = null)
* @method Grid\Column|Collection mm_user_id(string $label = null)
* @method Grid\Column|Collection order_num(string $label = null)
* @method Grid\Column|Collection state(string $label = null)
* @method Grid\Column|Collection time(string $label = null)
* @method Grid\Column|Collection pay_time(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null) * @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection order(string $label = null) * @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection icon(string $label = null) * @method Grid\Column|Collection icon(string $label = null)
* @method Grid\Column|Collection uri(string $label = null) * @method Grid\Column|Collection uri(string $label = null)
* @method Grid\Column|Collection user_id(string $label = null)
* @method Grid\Column|Collection permission_id(string $label = null) * @method Grid\Column|Collection permission_id(string $label = null)
* @method Grid\Column|Collection menu_id(string $label = null) * @method Grid\Column|Collection menu_id(string $label = null)
* @method Grid\Column|Collection http_method(string $label = null) * @method Grid\Column|Collection http_method(string $label = null)
@ -1288,7 +1323,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection rules(string $label = null) * @method Grid\Column|Collection rules(string $label = null)
* @method Grid\Column|Collection uid(string $label = null) * @method Grid\Column|Collection uid(string $label = null)
* @method Grid\Column|Collection group_id(string $label = null) * @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 condition(string $label = null)
* @method Grid\Column|Collection ismenu(string $label = null) * @method Grid\Column|Collection ismenu(string $label = null)
* @method Grid\Column|Collection weigh(string $label = null) * @method Grid\Column|Collection weigh(string $label = null)
@ -1301,7 +1335,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection executetime(string $label = null) * @method Grid\Column|Collection executetime(string $label = null)
* @method Grid\Column|Collection group(string $label = null) * @method Grid\Column|Collection group(string $label = null)
* @method Grid\Column|Collection tip(string $label = null) * @method Grid\Column|Collection tip(string $label = null)
* @method Grid\Column|Collection value(string $label = null)
* @method Grid\Column|Collection rule(string $label = null) * @method Grid\Column|Collection rule(string $label = null)
* @method Grid\Column|Collection extend(string $label = null) * @method Grid\Column|Collection extend(string $label = null)
* @method Grid\Column|Collection event(string $label = null) * @method Grid\Column|Collection event(string $label = null)
@ -1324,7 +1357,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection refreshtime(string $label = null) * @method Grid\Column|Collection refreshtime(string $label = null)
* @method Grid\Column|Collection deletetime(string $label = null) * @method Grid\Column|Collection deletetime(string $label = null)
* @method Grid\Column|Collection switch(string $label = null) * @method Grid\Column|Collection switch(string $label = null)
* @method Grid\Column|Collection state(string $label = null)
* @method Grid\Column|Collection gender(string $label = null) * @method Grid\Column|Collection gender(string $label = null)
* @method Grid\Column|Collection birthday(string $label = null) * @method Grid\Column|Collection birthday(string $label = null)
* @method Grid\Column|Collection bio(string $label = null) * @method Grid\Column|Collection bio(string $label = null)
@ -1344,11 +1376,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection packagesize(string $label = null) * @method Grid\Column|Collection packagesize(string $label = null)
* @method Grid\Column|Collection downloadurl(string $label = null) * @method Grid\Column|Collection downloadurl(string $label = null)
* @method Grid\Column|Collection enforce(string $label = null) * @method Grid\Column|Collection enforce(string $label = null)
* @method Grid\Column|Collection connection(string $label = null)
* @method Grid\Column|Collection queue(string $label = null)
* @method Grid\Column|Collection payload(string $label = null)
* @method Grid\Column|Collection exception(string $label = null)
* @method Grid\Column|Collection failed_at(string $label = null)
* @method Grid\Column|Collection acid(string $label = null) * @method Grid\Column|Collection acid(string $label = null)
* @method Grid\Column|Collection uniacid(string $label = null) * @method Grid\Column|Collection uniacid(string $label = null)
* @method Grid\Column|Collection hash(string $label = null) * @method Grid\Column|Collection hash(string $label = null)
@ -1422,9 +1449,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection item(string $label = null) * @method Grid\Column|Collection item(string $label = null)
* @method Grid\Column|Collection area_name(string $label = null) * @method Grid\Column|Collection area_name(string $label = null)
* @method Grid\Column|Collection num(string $label = null) * @method Grid\Column|Collection num(string $label = null)
* @method Grid\Column|Collection store_id(string $label = null)
* @method Grid\Column|Collection stars(string $label = null) * @method Grid\Column|Collection stars(string $label = null)
* @method Grid\Column|Collection time(string $label = null)
* @method Grid\Column|Collection order_id(string $label = null) * @method Grid\Column|Collection order_id(string $label = null)
* @method Grid\Column|Collection hf(string $label = null) * @method Grid\Column|Collection hf(string $label = null)
* @method Grid\Column|Collection hf_time(string $label = null) * @method Grid\Column|Collection hf_time(string $label = null)
@ -1523,14 +1548,12 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection display(string $label = null) * @method Grid\Column|Collection display(string $label = null)
* @method Grid\Column|Collection introduction(string $label = null) * @method Grid\Column|Collection introduction(string $label = null)
* @method Grid\Column|Collection hx_id(string $label = null) * @method Grid\Column|Collection hx_id(string $label = null)
* @method Grid\Column|Collection order_num(string $label = null)
* @method Grid\Column|Collection goods_type(string $label = null) * @method Grid\Column|Collection goods_type(string $label = null)
* @method Grid\Column|Collection goods_num(string $label = null) * @method Grid\Column|Collection goods_num(string $label = null)
* @method Grid\Column|Collection pay_type(string $label = null) * @method Grid\Column|Collection pay_type(string $label = null)
* @method Grid\Column|Collection receive_name(string $label = null) * @method Grid\Column|Collection receive_name(string $label = null)
* @method Grid\Column|Collection receive_tel(string $label = null) * @method Grid\Column|Collection receive_tel(string $label = null)
* @method Grid\Column|Collection receive_address(string $label = null) * @method Grid\Column|Collection receive_address(string $label = null)
* @method Grid\Column|Collection pay_time(string $label = null)
* @method Grid\Column|Collection cz_time(string $label = null) * @method Grid\Column|Collection cz_time(string $label = null)
* @method Grid\Column|Collection question(string $label = null) * @method Grid\Column|Collection question(string $label = null)
* @method Grid\Column|Collection answer(string $label = null) * @method Grid\Column|Collection answer(string $label = null)
@ -1648,6 +1671,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection combination_id(string $label = null) * @method Grid\Column|Collection combination_id(string $label = null)
* @method Grid\Column|Collection order_status(string $label = null) * @method Grid\Column|Collection order_status(string $label = null)
* @method Grid\Column|Collection update_time(string $label = null) * @method Grid\Column|Collection update_time(string $label = null)
* @method Grid\Column|Collection refund_time(string $label = null)
* @method Grid\Column|Collection order_shipping_code(string $label = null) * @method Grid\Column|Collection order_shipping_code(string $label = null)
* @method Grid\Column|Collection shipping_name(string $label = null) * @method Grid\Column|Collection shipping_name(string $label = null)
* @method Grid\Column|Collection store_ids(string $label = null) * @method Grid\Column|Collection store_ids(string $label = null)
@ -1659,6 +1683,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection dada_status(string $label = null) * @method Grid\Column|Collection dada_status(string $label = null)
* @method Grid\Column|Collection print_num(string $label = null) * @method Grid\Column|Collection print_num(string $label = null)
* @method Grid\Column|Collection global_order_id(string $label = null) * @method Grid\Column|Collection global_order_id(string $label = null)
* @method Grid\Column|Collection plat(string $label = null)
* @method Grid\Column|Collection mchid(string $label = null) * @method Grid\Column|Collection mchid(string $label = null)
* @method Grid\Column|Collection wxkey(string $label = null) * @method Grid\Column|Collection wxkey(string $label = null)
* @method Grid\Column|Collection apiclient_cert(string $label = null) * @method Grid\Column|Collection apiclient_cert(string $label = null)
@ -1728,9 +1753,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection store_mchid(string $label = null) * @method Grid\Column|Collection store_mchid(string $label = null)
* @method Grid\Column|Collection cash_code(string $label = null) * @method Grid\Column|Collection cash_code(string $label = null)
* @method Grid\Column|Collection store_wallet(string $label = null) * @method Grid\Column|Collection store_wallet(string $label = null)
* @method Grid\Column|Collection mm_user_id(string $label = null)
* @method Grid\Column|Collection add_time(string $label = null) * @method Grid\Column|Collection add_time(string $label = null)
* @method Grid\Column|Collection category(string $label = null)
* @method Grid\Column|Collection xyh_open(string $label = null) * @method Grid\Column|Collection xyh_open(string $label = null)
* @method Grid\Column|Collection is_jd(string $label = null) * @method Grid\Column|Collection is_jd(string $label = null)
* @method Grid\Column|Collection is_jfpay(string $label = null) * @method Grid\Column|Collection is_jfpay(string $label = null)
@ -1863,7 +1886,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection is_open_dada_fee(string $label = null) * @method Grid\Column|Collection is_open_dada_fee(string $label = null)
* @method Grid\Column|Collection menu_name(string $label = null) * @method Grid\Column|Collection menu_name(string $label = null)
* @method Grid\Column|Collection info(string $label = null) * @method Grid\Column|Collection info(string $label = null)
* @method Grid\Column|Collection desc(string $label = null)
* @method Grid\Column|Collection tag(string $label = null) * @method Grid\Column|Collection tag(string $label = null)
* @method Grid\Column|Collection fw_cost(string $label = null) * @method Grid\Column|Collection fw_cost(string $label = null)
* @method Grid\Column|Collection zd_cost(string $label = null) * @method Grid\Column|Collection zd_cost(string $label = null)
@ -1932,6 +1954,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection minute(string $label = null) * @method Grid\Column|Collection minute(string $label = null)
* @method Grid\Column|Collection extra(string $label = null) * @method Grid\Column|Collection extra(string $label = null)
* @method Grid\Column|Collection tid(string $label = null) * @method Grid\Column|Collection tid(string $label = null)
* @method Grid\Column|Collection payload(string $label = null)
* @method Grid\Column|Collection handled(string $label = null) * @method Grid\Column|Collection handled(string $label = null)
* @method Grid\Column|Collection total(string $label = null) * @method Grid\Column|Collection total(string $label = null)
* @method Grid\Column|Collection append_title(string $label = null) * @method Grid\Column|Collection append_title(string $label = null)
@ -2320,13 +2343,26 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection logo_url(string $label = null) * @method Grid\Column|Collection logo_url(string $label = null)
* @method Grid\Column|Collection success(string $label = null) * @method Grid\Column|Collection success(string $label = null)
* @method Grid\Column|Collection error(string $label = null) * @method Grid\Column|Collection error(string $label = null)
* @method Grid\Column|Collection cover_img(string $label = null)
* @method Grid\Column|Collection qrcode_path(string $label = null) * @method Grid\Column|Collection qrcode_path(string $label = null)
* @method Grid\Column|Collection user_type(string $label = null) * @method Grid\Column|Collection user_type(string $label = null)
* @method Grid\Column|Collection money_type(string $label = null) * @method Grid\Column|Collection money_type(string $label = null)
* @method Grid\Column|Collection source_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 comment(string $label = null)
* @method Grid\Column|Collection is_del(string $label = null)
* @method Grid\Column|Collection goods_type_id(string $label = null)
* @method Grid\Column|Collection on_sale(string $label = null)
* @method Grid\Column|Collection is_infinite(string $label = null)
* @method Grid\Column|Collection original_price(string $label = null)
* @method Grid\Column|Collection vip_price(string $label = null)
* @method Grid\Column|Collection tags(string $label = null)
* @method Grid\Column|Collection details_imgs(string $label = null)
* @method Grid\Column|Collection is_operated(string $label = null) * @method Grid\Column|Collection is_operated(string $label = null)
* @method Grid\Column|Collection distribution_money(string $label = null)
* @method Grid\Column|Collection refuse_note(string $label = null)
* @method Grid\Column|Collection shipping_type(string $label = null)
* @method Grid\Column|Collection coupon_money(string $label = null)
* @method Grid\Column|Collection delivery_money(string $label = null)
* @method Grid\Column|Collection delivery_status(string $label = null)
* @method Grid\Column|Collection c_attitude(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_service(string $label = null)
* @method Grid\Column|Collection c_quality(string $label = null) * @method Grid\Column|Collection c_quality(string $label = null)
@ -2338,10 +2374,20 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection set_reward(string $label = null) * @method Grid\Column|Collection set_reward(string $label = null)
* @method Grid\Column|Collection device_name(string $label = null) * @method Grid\Column|Collection device_name(string $label = null)
* @method Grid\Column|Collection bind_time(string $label = null) * @method Grid\Column|Collection bind_time(string $label = null)
* @method Grid\Column|Collection store_type_id(string $label = null)
* @method Grid\Column|Collection stall_info(string $label = null)
* @method Grid\Column|Collection business_license(string $label = null)
* @method Grid\Column|Collection expire_time(string $label = null)
* @method Grid\Column|Collection time1(string $label = null)
* @method Grid\Column|Collection pay_status(string $label = null)
* @method Grid\Column|Collection apply_time(string $label = null)
* @method Grid\Column|Collection store_applet_img(string $label = null)
* @method Grid\Column|Collection cash_code_img(string $label = null)
* @method Grid\Column|Collection nick_name(string $label = null)
* @method Grid\Column|Collection real_name(string $label = null)
* @method Grid\Column|Collection balance(string $label = null) * @method Grid\Column|Collection balance(string $label = null)
* @method Grid\Column|Collection bind_type(string $label = null) * @method Grid\Column|Collection bind_type(string $label = null)
* @method Grid\Column|Collection json_data(string $label = null) * @method Grid\Column|Collection json_data(string $label = null)
* @method Grid\Column|Collection email_verified_at(string $label = null)
*/ */
class Grid {} class Grid {}
@ -2406,14 +2452,26 @@ namespace Dcat\Admin {
* @property Show\Field|Collection mm_id * @property Show\Field|Collection mm_id
* @property Show\Field|Collection admin_user_id * @property Show\Field|Collection admin_user_id
* @property Show\Field|Collection cs_id * @property Show\Field|Collection cs_id
* @property Show\Field|Collection type
* @property Show\Field|Collection user_id
* @property Show\Field|Collection desc
* @property Show\Field|Collection activity * @property Show\Field|Collection activity
* @property Show\Field|Collection forward * @property Show\Field|Collection forward
* @property Show\Field|Collection repay * @property Show\Field|Collection repay
* @property Show\Field|Collection category
* @property Show\Field|Collection value
* @property Show\Field|Collection store_id
* @property Show\Field|Collection store_name
* @property Show\Field|Collection new_user_total
* @property Show\Field|Collection mm_user_id
* @property Show\Field|Collection order_num
* @property Show\Field|Collection state
* @property Show\Field|Collection time
* @property Show\Field|Collection pay_time
* @property Show\Field|Collection parent_id * @property Show\Field|Collection parent_id
* @property Show\Field|Collection order * @property Show\Field|Collection order
* @property Show\Field|Collection icon * @property Show\Field|Collection icon
* @property Show\Field|Collection uri * @property Show\Field|Collection uri
* @property Show\Field|Collection user_id
* @property Show\Field|Collection permission_id * @property Show\Field|Collection permission_id
* @property Show\Field|Collection menu_id * @property Show\Field|Collection menu_id
* @property Show\Field|Collection http_method * @property Show\Field|Collection http_method
@ -2459,7 +2517,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection rules * @property Show\Field|Collection rules
* @property Show\Field|Collection uid * @property Show\Field|Collection uid
* @property Show\Field|Collection group_id * @property Show\Field|Collection group_id
* @property Show\Field|Collection type
* @property Show\Field|Collection condition * @property Show\Field|Collection condition
* @property Show\Field|Collection ismenu * @property Show\Field|Collection ismenu
* @property Show\Field|Collection weigh * @property Show\Field|Collection weigh
@ -2472,7 +2529,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection executetime * @property Show\Field|Collection executetime
* @property Show\Field|Collection group * @property Show\Field|Collection group
* @property Show\Field|Collection tip * @property Show\Field|Collection tip
* @property Show\Field|Collection value
* @property Show\Field|Collection rule * @property Show\Field|Collection rule
* @property Show\Field|Collection extend * @property Show\Field|Collection extend
* @property Show\Field|Collection event * @property Show\Field|Collection event
@ -2495,7 +2551,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection refreshtime * @property Show\Field|Collection refreshtime
* @property Show\Field|Collection deletetime * @property Show\Field|Collection deletetime
* @property Show\Field|Collection switch * @property Show\Field|Collection switch
* @property Show\Field|Collection state
* @property Show\Field|Collection gender * @property Show\Field|Collection gender
* @property Show\Field|Collection birthday * @property Show\Field|Collection birthday
* @property Show\Field|Collection bio * @property Show\Field|Collection bio
@ -2515,11 +2570,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection packagesize * @property Show\Field|Collection packagesize
* @property Show\Field|Collection downloadurl * @property Show\Field|Collection downloadurl
* @property Show\Field|Collection enforce * @property Show\Field|Collection enforce
* @property Show\Field|Collection connection
* @property Show\Field|Collection queue
* @property Show\Field|Collection payload
* @property Show\Field|Collection exception
* @property Show\Field|Collection failed_at
* @property Show\Field|Collection acid * @property Show\Field|Collection acid
* @property Show\Field|Collection uniacid * @property Show\Field|Collection uniacid
* @property Show\Field|Collection hash * @property Show\Field|Collection hash
@ -2593,9 +2643,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection item * @property Show\Field|Collection item
* @property Show\Field|Collection area_name * @property Show\Field|Collection area_name
* @property Show\Field|Collection num * @property Show\Field|Collection num
* @property Show\Field|Collection store_id
* @property Show\Field|Collection stars * @property Show\Field|Collection stars
* @property Show\Field|Collection time
* @property Show\Field|Collection order_id * @property Show\Field|Collection order_id
* @property Show\Field|Collection hf * @property Show\Field|Collection hf
* @property Show\Field|Collection hf_time * @property Show\Field|Collection hf_time
@ -2694,14 +2742,12 @@ namespace Dcat\Admin {
* @property Show\Field|Collection display * @property Show\Field|Collection display
* @property Show\Field|Collection introduction * @property Show\Field|Collection introduction
* @property Show\Field|Collection hx_id * @property Show\Field|Collection hx_id
* @property Show\Field|Collection order_num
* @property Show\Field|Collection goods_type * @property Show\Field|Collection goods_type
* @property Show\Field|Collection goods_num * @property Show\Field|Collection goods_num
* @property Show\Field|Collection pay_type * @property Show\Field|Collection pay_type
* @property Show\Field|Collection receive_name * @property Show\Field|Collection receive_name
* @property Show\Field|Collection receive_tel * @property Show\Field|Collection receive_tel
* @property Show\Field|Collection receive_address * @property Show\Field|Collection receive_address
* @property Show\Field|Collection pay_time
* @property Show\Field|Collection cz_time * @property Show\Field|Collection cz_time
* @property Show\Field|Collection question * @property Show\Field|Collection question
* @property Show\Field|Collection answer * @property Show\Field|Collection answer
@ -2819,6 +2865,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection combination_id * @property Show\Field|Collection combination_id
* @property Show\Field|Collection order_status * @property Show\Field|Collection order_status
* @property Show\Field|Collection update_time * @property Show\Field|Collection update_time
* @property Show\Field|Collection refund_time
* @property Show\Field|Collection order_shipping_code * @property Show\Field|Collection order_shipping_code
* @property Show\Field|Collection shipping_name * @property Show\Field|Collection shipping_name
* @property Show\Field|Collection store_ids * @property Show\Field|Collection store_ids
@ -2830,6 +2877,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection dada_status * @property Show\Field|Collection dada_status
* @property Show\Field|Collection print_num * @property Show\Field|Collection print_num
* @property Show\Field|Collection global_order_id * @property Show\Field|Collection global_order_id
* @property Show\Field|Collection plat
* @property Show\Field|Collection mchid * @property Show\Field|Collection mchid
* @property Show\Field|Collection wxkey * @property Show\Field|Collection wxkey
* @property Show\Field|Collection apiclient_cert * @property Show\Field|Collection apiclient_cert
@ -2899,9 +2947,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection store_mchid * @property Show\Field|Collection store_mchid
* @property Show\Field|Collection cash_code * @property Show\Field|Collection cash_code
* @property Show\Field|Collection store_wallet * @property Show\Field|Collection store_wallet
* @property Show\Field|Collection mm_user_id
* @property Show\Field|Collection add_time * @property Show\Field|Collection add_time
* @property Show\Field|Collection category
* @property Show\Field|Collection xyh_open * @property Show\Field|Collection xyh_open
* @property Show\Field|Collection is_jd * @property Show\Field|Collection is_jd
* @property Show\Field|Collection is_jfpay * @property Show\Field|Collection is_jfpay
@ -3034,7 +3080,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection is_open_dada_fee * @property Show\Field|Collection is_open_dada_fee
* @property Show\Field|Collection menu_name * @property Show\Field|Collection menu_name
* @property Show\Field|Collection info * @property Show\Field|Collection info
* @property Show\Field|Collection desc
* @property Show\Field|Collection tag * @property Show\Field|Collection tag
* @property Show\Field|Collection fw_cost * @property Show\Field|Collection fw_cost
* @property Show\Field|Collection zd_cost * @property Show\Field|Collection zd_cost
@ -3103,6 +3148,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection minute * @property Show\Field|Collection minute
* @property Show\Field|Collection extra * @property Show\Field|Collection extra
* @property Show\Field|Collection tid * @property Show\Field|Collection tid
* @property Show\Field|Collection payload
* @property Show\Field|Collection handled * @property Show\Field|Collection handled
* @property Show\Field|Collection total * @property Show\Field|Collection total
* @property Show\Field|Collection append_title * @property Show\Field|Collection append_title
@ -3491,13 +3537,26 @@ namespace Dcat\Admin {
* @property Show\Field|Collection logo_url * @property Show\Field|Collection logo_url
* @property Show\Field|Collection success * @property Show\Field|Collection success
* @property Show\Field|Collection error * @property Show\Field|Collection error
* @property Show\Field|Collection cover_img
* @property Show\Field|Collection qrcode_path * @property Show\Field|Collection qrcode_path
* @property Show\Field|Collection user_type * @property Show\Field|Collection user_type
* @property Show\Field|Collection money_type * @property Show\Field|Collection money_type
* @property Show\Field|Collection source_type * @property Show\Field|Collection source_type
* @property Show\Field|Collection comment * @property Show\Field|Collection comment
* @property Show\Field|Collection is_del
* @property Show\Field|Collection goods_type_id
* @property Show\Field|Collection on_sale
* @property Show\Field|Collection is_infinite
* @property Show\Field|Collection original_price
* @property Show\Field|Collection vip_price
* @property Show\Field|Collection tags
* @property Show\Field|Collection details_imgs
* @property Show\Field|Collection is_operated * @property Show\Field|Collection is_operated
* @property Show\Field|Collection distribution_money
* @property Show\Field|Collection refuse_note
* @property Show\Field|Collection shipping_type
* @property Show\Field|Collection coupon_money
* @property Show\Field|Collection delivery_money
* @property Show\Field|Collection delivery_status
* @property Show\Field|Collection c_attitude * @property Show\Field|Collection c_attitude
* @property Show\Field|Collection c_service * @property Show\Field|Collection c_service
* @property Show\Field|Collection c_quality * @property Show\Field|Collection c_quality
@ -3509,10 +3568,20 @@ namespace Dcat\Admin {
* @property Show\Field|Collection set_reward * @property Show\Field|Collection set_reward
* @property Show\Field|Collection device_name * @property Show\Field|Collection device_name
* @property Show\Field|Collection bind_time * @property Show\Field|Collection bind_time
* @property Show\Field|Collection store_type_id
* @property Show\Field|Collection stall_info
* @property Show\Field|Collection business_license
* @property Show\Field|Collection expire_time
* @property Show\Field|Collection time1
* @property Show\Field|Collection pay_status
* @property Show\Field|Collection apply_time
* @property Show\Field|Collection store_applet_img
* @property Show\Field|Collection cash_code_img
* @property Show\Field|Collection nick_name
* @property Show\Field|Collection real_name
* @property Show\Field|Collection balance * @property Show\Field|Collection balance
* @property Show\Field|Collection bind_type * @property Show\Field|Collection bind_type
* @property Show\Field|Collection json_data * @property Show\Field|Collection json_data
* @property Show\Field|Collection email_verified_at
* *
* @method Show\Field|Collection id(string $label = null) * @method Show\Field|Collection id(string $label = null)
* @method Show\Field|Collection username(string $label = null) * @method Show\Field|Collection username(string $label = null)
@ -3572,14 +3641,26 @@ namespace Dcat\Admin {
* @method Show\Field|Collection mm_id(string $label = null) * @method Show\Field|Collection mm_id(string $label = null)
* @method Show\Field|Collection admin_user_id(string $label = null) * @method Show\Field|Collection admin_user_id(string $label = null)
* @method Show\Field|Collection cs_id(string $label = null) * @method Show\Field|Collection cs_id(string $label = null)
* @method Show\Field|Collection type(string $label = null)
* @method Show\Field|Collection user_id(string $label = null)
* @method Show\Field|Collection desc(string $label = null)
* @method Show\Field|Collection activity(string $label = null) * @method Show\Field|Collection activity(string $label = null)
* @method Show\Field|Collection forward(string $label = null) * @method Show\Field|Collection forward(string $label = null)
* @method Show\Field|Collection repay(string $label = null) * @method Show\Field|Collection repay(string $label = null)
* @method Show\Field|Collection category(string $label = null)
* @method Show\Field|Collection value(string $label = null)
* @method Show\Field|Collection store_id(string $label = null)
* @method Show\Field|Collection store_name(string $label = null)
* @method Show\Field|Collection new_user_total(string $label = null)
* @method Show\Field|Collection mm_user_id(string $label = null)
* @method Show\Field|Collection order_num(string $label = null)
* @method Show\Field|Collection state(string $label = null)
* @method Show\Field|Collection time(string $label = null)
* @method Show\Field|Collection pay_time(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null) * @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection order(string $label = null) * @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection icon(string $label = null) * @method Show\Field|Collection icon(string $label = null)
* @method Show\Field|Collection uri(string $label = null) * @method Show\Field|Collection uri(string $label = null)
* @method Show\Field|Collection user_id(string $label = null)
* @method Show\Field|Collection permission_id(string $label = null) * @method Show\Field|Collection permission_id(string $label = null)
* @method Show\Field|Collection menu_id(string $label = null) * @method Show\Field|Collection menu_id(string $label = null)
* @method Show\Field|Collection http_method(string $label = null) * @method Show\Field|Collection http_method(string $label = null)
@ -3625,7 +3706,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection rules(string $label = null) * @method Show\Field|Collection rules(string $label = null)
* @method Show\Field|Collection uid(string $label = null) * @method Show\Field|Collection uid(string $label = null)
* @method Show\Field|Collection group_id(string $label = null) * @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 condition(string $label = null)
* @method Show\Field|Collection ismenu(string $label = null) * @method Show\Field|Collection ismenu(string $label = null)
* @method Show\Field|Collection weigh(string $label = null) * @method Show\Field|Collection weigh(string $label = null)
@ -3638,7 +3718,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection executetime(string $label = null) * @method Show\Field|Collection executetime(string $label = null)
* @method Show\Field|Collection group(string $label = null) * @method Show\Field|Collection group(string $label = null)
* @method Show\Field|Collection tip(string $label = null) * @method Show\Field|Collection tip(string $label = null)
* @method Show\Field|Collection value(string $label = null)
* @method Show\Field|Collection rule(string $label = null) * @method Show\Field|Collection rule(string $label = null)
* @method Show\Field|Collection extend(string $label = null) * @method Show\Field|Collection extend(string $label = null)
* @method Show\Field|Collection event(string $label = null) * @method Show\Field|Collection event(string $label = null)
@ -3661,7 +3740,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection refreshtime(string $label = null) * @method Show\Field|Collection refreshtime(string $label = null)
* @method Show\Field|Collection deletetime(string $label = null) * @method Show\Field|Collection deletetime(string $label = null)
* @method Show\Field|Collection switch(string $label = null) * @method Show\Field|Collection switch(string $label = null)
* @method Show\Field|Collection state(string $label = null)
* @method Show\Field|Collection gender(string $label = null) * @method Show\Field|Collection gender(string $label = null)
* @method Show\Field|Collection birthday(string $label = null) * @method Show\Field|Collection birthday(string $label = null)
* @method Show\Field|Collection bio(string $label = null) * @method Show\Field|Collection bio(string $label = null)
@ -3681,11 +3759,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection packagesize(string $label = null) * @method Show\Field|Collection packagesize(string $label = null)
* @method Show\Field|Collection downloadurl(string $label = null) * @method Show\Field|Collection downloadurl(string $label = null)
* @method Show\Field|Collection enforce(string $label = null) * @method Show\Field|Collection enforce(string $label = null)
* @method Show\Field|Collection connection(string $label = null)
* @method Show\Field|Collection queue(string $label = null)
* @method Show\Field|Collection payload(string $label = null)
* @method Show\Field|Collection exception(string $label = null)
* @method Show\Field|Collection failed_at(string $label = null)
* @method Show\Field|Collection acid(string $label = null) * @method Show\Field|Collection acid(string $label = null)
* @method Show\Field|Collection uniacid(string $label = null) * @method Show\Field|Collection uniacid(string $label = null)
* @method Show\Field|Collection hash(string $label = null) * @method Show\Field|Collection hash(string $label = null)
@ -3759,9 +3832,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection item(string $label = null) * @method Show\Field|Collection item(string $label = null)
* @method Show\Field|Collection area_name(string $label = null) * @method Show\Field|Collection area_name(string $label = null)
* @method Show\Field|Collection num(string $label = null) * @method Show\Field|Collection num(string $label = null)
* @method Show\Field|Collection store_id(string $label = null)
* @method Show\Field|Collection stars(string $label = null) * @method Show\Field|Collection stars(string $label = null)
* @method Show\Field|Collection time(string $label = null)
* @method Show\Field|Collection order_id(string $label = null) * @method Show\Field|Collection order_id(string $label = null)
* @method Show\Field|Collection hf(string $label = null) * @method Show\Field|Collection hf(string $label = null)
* @method Show\Field|Collection hf_time(string $label = null) * @method Show\Field|Collection hf_time(string $label = null)
@ -3860,14 +3931,12 @@ namespace Dcat\Admin {
* @method Show\Field|Collection display(string $label = null) * @method Show\Field|Collection display(string $label = null)
* @method Show\Field|Collection introduction(string $label = null) * @method Show\Field|Collection introduction(string $label = null)
* @method Show\Field|Collection hx_id(string $label = null) * @method Show\Field|Collection hx_id(string $label = null)
* @method Show\Field|Collection order_num(string $label = null)
* @method Show\Field|Collection goods_type(string $label = null) * @method Show\Field|Collection goods_type(string $label = null)
* @method Show\Field|Collection goods_num(string $label = null) * @method Show\Field|Collection goods_num(string $label = null)
* @method Show\Field|Collection pay_type(string $label = null) * @method Show\Field|Collection pay_type(string $label = null)
* @method Show\Field|Collection receive_name(string $label = null) * @method Show\Field|Collection receive_name(string $label = null)
* @method Show\Field|Collection receive_tel(string $label = null) * @method Show\Field|Collection receive_tel(string $label = null)
* @method Show\Field|Collection receive_address(string $label = null) * @method Show\Field|Collection receive_address(string $label = null)
* @method Show\Field|Collection pay_time(string $label = null)
* @method Show\Field|Collection cz_time(string $label = null) * @method Show\Field|Collection cz_time(string $label = null)
* @method Show\Field|Collection question(string $label = null) * @method Show\Field|Collection question(string $label = null)
* @method Show\Field|Collection answer(string $label = null) * @method Show\Field|Collection answer(string $label = null)
@ -3985,6 +4054,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection combination_id(string $label = null) * @method Show\Field|Collection combination_id(string $label = null)
* @method Show\Field|Collection order_status(string $label = null) * @method Show\Field|Collection order_status(string $label = null)
* @method Show\Field|Collection update_time(string $label = null) * @method Show\Field|Collection update_time(string $label = null)
* @method Show\Field|Collection refund_time(string $label = null)
* @method Show\Field|Collection order_shipping_code(string $label = null) * @method Show\Field|Collection order_shipping_code(string $label = null)
* @method Show\Field|Collection shipping_name(string $label = null) * @method Show\Field|Collection shipping_name(string $label = null)
* @method Show\Field|Collection store_ids(string $label = null) * @method Show\Field|Collection store_ids(string $label = null)
@ -3996,6 +4066,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection dada_status(string $label = null) * @method Show\Field|Collection dada_status(string $label = null)
* @method Show\Field|Collection print_num(string $label = null) * @method Show\Field|Collection print_num(string $label = null)
* @method Show\Field|Collection global_order_id(string $label = null) * @method Show\Field|Collection global_order_id(string $label = null)
* @method Show\Field|Collection plat(string $label = null)
* @method Show\Field|Collection mchid(string $label = null) * @method Show\Field|Collection mchid(string $label = null)
* @method Show\Field|Collection wxkey(string $label = null) * @method Show\Field|Collection wxkey(string $label = null)
* @method Show\Field|Collection apiclient_cert(string $label = null) * @method Show\Field|Collection apiclient_cert(string $label = null)
@ -4065,9 +4136,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection store_mchid(string $label = null) * @method Show\Field|Collection store_mchid(string $label = null)
* @method Show\Field|Collection cash_code(string $label = null) * @method Show\Field|Collection cash_code(string $label = null)
* @method Show\Field|Collection store_wallet(string $label = null) * @method Show\Field|Collection store_wallet(string $label = null)
* @method Show\Field|Collection mm_user_id(string $label = null)
* @method Show\Field|Collection add_time(string $label = null) * @method Show\Field|Collection add_time(string $label = null)
* @method Show\Field|Collection category(string $label = null)
* @method Show\Field|Collection xyh_open(string $label = null) * @method Show\Field|Collection xyh_open(string $label = null)
* @method Show\Field|Collection is_jd(string $label = null) * @method Show\Field|Collection is_jd(string $label = null)
* @method Show\Field|Collection is_jfpay(string $label = null) * @method Show\Field|Collection is_jfpay(string $label = null)
@ -4200,7 +4269,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection is_open_dada_fee(string $label = null) * @method Show\Field|Collection is_open_dada_fee(string $label = null)
* @method Show\Field|Collection menu_name(string $label = null) * @method Show\Field|Collection menu_name(string $label = null)
* @method Show\Field|Collection info(string $label = null) * @method Show\Field|Collection info(string $label = null)
* @method Show\Field|Collection desc(string $label = null)
* @method Show\Field|Collection tag(string $label = null) * @method Show\Field|Collection tag(string $label = null)
* @method Show\Field|Collection fw_cost(string $label = null) * @method Show\Field|Collection fw_cost(string $label = null)
* @method Show\Field|Collection zd_cost(string $label = null) * @method Show\Field|Collection zd_cost(string $label = null)
@ -4269,6 +4337,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection minute(string $label = null) * @method Show\Field|Collection minute(string $label = null)
* @method Show\Field|Collection extra(string $label = null) * @method Show\Field|Collection extra(string $label = null)
* @method Show\Field|Collection tid(string $label = null) * @method Show\Field|Collection tid(string $label = null)
* @method Show\Field|Collection payload(string $label = null)
* @method Show\Field|Collection handled(string $label = null) * @method Show\Field|Collection handled(string $label = null)
* @method Show\Field|Collection total(string $label = null) * @method Show\Field|Collection total(string $label = null)
* @method Show\Field|Collection append_title(string $label = null) * @method Show\Field|Collection append_title(string $label = null)
@ -4657,13 +4726,26 @@ namespace Dcat\Admin {
* @method Show\Field|Collection logo_url(string $label = null) * @method Show\Field|Collection logo_url(string $label = null)
* @method Show\Field|Collection success(string $label = null) * @method Show\Field|Collection success(string $label = null)
* @method Show\Field|Collection error(string $label = null) * @method Show\Field|Collection error(string $label = null)
* @method Show\Field|Collection cover_img(string $label = null)
* @method Show\Field|Collection qrcode_path(string $label = null) * @method Show\Field|Collection qrcode_path(string $label = null)
* @method Show\Field|Collection user_type(string $label = null) * @method Show\Field|Collection user_type(string $label = null)
* @method Show\Field|Collection money_type(string $label = null) * @method Show\Field|Collection money_type(string $label = null)
* @method Show\Field|Collection source_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 comment(string $label = null)
* @method Show\Field|Collection is_del(string $label = null)
* @method Show\Field|Collection goods_type_id(string $label = null)
* @method Show\Field|Collection on_sale(string $label = null)
* @method Show\Field|Collection is_infinite(string $label = null)
* @method Show\Field|Collection original_price(string $label = null)
* @method Show\Field|Collection vip_price(string $label = null)
* @method Show\Field|Collection tags(string $label = null)
* @method Show\Field|Collection details_imgs(string $label = null)
* @method Show\Field|Collection is_operated(string $label = null) * @method Show\Field|Collection is_operated(string $label = null)
* @method Show\Field|Collection distribution_money(string $label = null)
* @method Show\Field|Collection refuse_note(string $label = null)
* @method Show\Field|Collection shipping_type(string $label = null)
* @method Show\Field|Collection coupon_money(string $label = null)
* @method Show\Field|Collection delivery_money(string $label = null)
* @method Show\Field|Collection delivery_status(string $label = null)
* @method Show\Field|Collection c_attitude(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_service(string $label = null)
* @method Show\Field|Collection c_quality(string $label = null) * @method Show\Field|Collection c_quality(string $label = null)
@ -4675,10 +4757,20 @@ namespace Dcat\Admin {
* @method Show\Field|Collection set_reward(string $label = null) * @method Show\Field|Collection set_reward(string $label = null)
* @method Show\Field|Collection device_name(string $label = null) * @method Show\Field|Collection device_name(string $label = null)
* @method Show\Field|Collection bind_time(string $label = null) * @method Show\Field|Collection bind_time(string $label = null)
* @method Show\Field|Collection store_type_id(string $label = null)
* @method Show\Field|Collection stall_info(string $label = null)
* @method Show\Field|Collection business_license(string $label = null)
* @method Show\Field|Collection expire_time(string $label = null)
* @method Show\Field|Collection time1(string $label = null)
* @method Show\Field|Collection pay_status(string $label = null)
* @method Show\Field|Collection apply_time(string $label = null)
* @method Show\Field|Collection store_applet_img(string $label = null)
* @method Show\Field|Collection cash_code_img(string $label = null)
* @method Show\Field|Collection nick_name(string $label = null)
* @method Show\Field|Collection real_name(string $label = null)
* @method Show\Field|Collection balance(string $label = null) * @method Show\Field|Collection balance(string $label = null)
* @method Show\Field|Collection bind_type(string $label = null) * @method Show\Field|Collection bind_type(string $label = null)
* @method Show\Field|Collection json_data(string $label = null) * @method Show\Field|Collection json_data(string $label = null)
* @method Show\Field|Collection email_verified_at(string $label = null)
*/ */
class Show {} class Show {}

17
resources/lang/zh-CN/lanzu-service-horseman.php

@ -0,0 +1,17 @@
<?php
return [
'labels' => [
'LanzuServiceHorseman' => 'LanzuServiceHorseman',
],
'fields' => [
'user_id' => '用户id',
'name' => '姓名',
'tel' => '电话',
'market_id' => '市场id',
'status' => '状态 -1禁用 1正常 2删除',
'qr_url' => '骑手二维码',
'head_url' => '头像',
],
'options' => [
],
];
Loading…
Cancel
Save