Browse Source

初始-统计店铺新增用户数量

master
liangyuyan 5 years ago
parent
commit
d22947f552
  1. 64
      app/Admin/Controllers/StoreUserReportController.php
  2. 16
      app/Admin/Repositories/StoreUserReport.php
  3. 15
      app/Models/storeUserReport.php
  4. 92
      dcat_admin_ide_helper.php
  5. 13
      resources/lang/zh-CN/store-user-report.php

64
app/Admin/Controllers/StoreUserReportController.php

@ -0,0 +1,64 @@
<?php
namespace App\Admin\Controllers;
use App\Admin\Repositories\StoreUserReport;
use Dcat\Admin\Form;
use Dcat\Admin\Grid;
use Dcat\Admin\Show;
use Dcat\Admin\Controllers\AdminController;
class StoreUserReportController extends AdminController
{
/**
* Make a grid builder.
*
* @return Grid
*/
protected function grid()
{
return Grid::make(new StoreUserReport(), function (Grid $grid) {
$grid->id->sortable();
$grid->market_id;
$grid->name;
$grid->mm_user_id;
$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 StoreUserReport(), function (Show $show) {
$show->id;
$show->market_id;
$show->name;
$show->mm_user_id;
});
}
/**
* Make a form builder.
*
* @return Form
*/
protected function form()
{
return Form::make(new StoreUserReport(), function (Form $form) {
$form->display('id');
$form->text('market_id');
$form->text('name');
$form->text('mm_user_id');
});
}
}

16
app/Admin/Repositories/StoreUserReport.php

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

15
app/Models/storeUserReport.php

@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Dcat\Admin\Traits\HasDateTimeFormatter;
use Illuminate\Database\Eloquent\Model;
class storeUserReport extends Model
{
use HasDateTimeFormatter;
protected $table = 'ims_cjdc_store';
public $timestamps = false;
}

92
dcat_admin_ide_helper.php

@ -40,10 +40,8 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection bank_name * @property Grid\Column|Collection bank_name
* @property Grid\Column|Collection bank_card * @property Grid\Column|Collection bank_card
* @property Grid\Column|Collection bank_addr * @property Grid\Column|Collection bank_addr
* @property Grid\Column|Collection admin_user_id
* @property Grid\Column|Collection status * @property Grid\Column|Collection status
* @property Grid\Column|Collection market_id * @property Grid\Column|Collection market_id
* @property Grid\Column|Collection is_del
* @property Grid\Column|Collection logo * @property Grid\Column|Collection logo
* @property Grid\Column|Collection address * @property Grid\Column|Collection address
* @property Grid\Column|Collection introduce * @property Grid\Column|Collection introduce
@ -56,11 +54,15 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection dn_poundage * @property Grid\Column|Collection dn_poundage
* @property Grid\Column|Collection dm_poundage * @property Grid\Column|Collection dm_poundage
* @property Grid\Column|Collection yd_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 loudspeaker_imei
* @property Grid\Column|Collection dishes_menu_intro * @property Grid\Column|Collection dishes_menu_intro
* @property Grid\Column|Collection create_time * @property Grid\Column|Collection create_time
* @property Grid\Column|Collection tel
* @property Grid\Column|Collection is_rest
* @property Grid\Column|Collection award_money
* @property Grid\Column|Collection img
* @property Grid\Column|Collection start_at
* @property Grid\Column|Collection freight
* @property Grid\Column|Collection money * @property Grid\Column|Collection money
* @property Grid\Column|Collection mp_id * @property Grid\Column|Collection mp_id
* @property Grid\Column|Collection is_pay * @property Grid\Column|Collection is_pay
@ -253,7 +255,6 @@ namespace Dcat\Admin {
* @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 store_id
* @property Grid\Column|Collection img
* @property Grid\Column|Collection stars * @property Grid\Column|Collection stars
* @property Grid\Column|Collection time * @property Grid\Column|Collection time
* @property Grid\Column|Collection order_id * @property Grid\Column|Collection order_id
@ -391,6 +392,8 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection waimai_pay_temp * @property Grid\Column|Collection waimai_pay_temp
* @property Grid\Column|Collection dangmian_pay_temp * @property Grid\Column|Collection dangmian_pay_temp
* @property Grid\Column|Collection ziti_pay_temp * @property Grid\Column|Collection ziti_pay_temp
* @property Grid\Column|Collection dada_number
* @property Grid\Column|Collection is_open_dada
* @property Grid\Column|Collection deleted_at * @property Grid\Column|Collection deleted_at
* @property Grid\Column|Collection sender * @property Grid\Column|Collection sender
* @property Grid\Column|Collection is_email * @property Grid\Column|Collection is_email
@ -441,7 +444,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection ps_money * @property Grid\Column|Collection ps_money
* @property Grid\Column|Collection mj_money * @property Grid\Column|Collection mj_money
* @property Grid\Column|Collection xyh_money * @property Grid\Column|Collection xyh_money
* @property Grid\Column|Collection tel
* @property Grid\Column|Collection jj_note * @property Grid\Column|Collection jj_note
* @property Grid\Column|Collection area * @property Grid\Column|Collection area
* @property Grid\Column|Collection del * @property Grid\Column|Collection del
@ -488,6 +490,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection total_money * @property Grid\Column|Collection total_money
* @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 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
@ -531,9 +534,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection sss_shop_token * @property Grid\Column|Collection sss_shop_token
* @property Grid\Column|Collection time4 * @property Grid\Column|Collection time4
* @property Grid\Column|Collection announcement * @property Grid\Column|Collection announcement
* @property Grid\Column|Collection is_rest
* @property Grid\Column|Collection start_at
* @property Grid\Column|Collection freight
* @property Grid\Column|Collection yyzz * @property Grid\Column|Collection yyzz
* @property Grid\Column|Collection md_area * @property Grid\Column|Collection md_area
* @property Grid\Column|Collection md_type * @property Grid\Column|Collection md_type
@ -560,7 +560,6 @@ 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 award_money
* @property Grid\Column|Collection mm_user_id * @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 category
@ -709,6 +708,7 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection order_money * @property Grid\Column|Collection order_money
* @property Grid\Column|Collection order_number * @property Grid\Column|Collection order_number
* @property Grid\Column|Collection hy_day * @property Grid\Column|Collection hy_day
* @property Grid\Column|Collection unionid
* @property Grid\Column|Collection is_default * @property Grid\Column|Collection is_default
* @property Grid\Column|Collection yhk_num * @property Grid\Column|Collection yhk_num
* @property Grid\Column|Collection yh_info * @property Grid\Column|Collection yh_info
@ -843,7 +843,6 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection language * @property Grid\Column|Collection language
* @property Grid\Column|Collection headimgurl * @property Grid\Column|Collection headimgurl
* @property Grid\Column|Collection subscribe_time * @property Grid\Column|Collection subscribe_time
* @property Grid\Column|Collection unionid
* @property Grid\Column|Collection groupid * @property Grid\Column|Collection groupid
* @property Grid\Column|Collection tagid_list * @property Grid\Column|Collection tagid_list
* @property Grid\Column|Collection subscribe_scene * @property Grid\Column|Collection subscribe_scene
@ -1157,6 +1156,8 @@ namespace Dcat\Admin {
* @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 admin_user_id
* @property Grid\Column|Collection is_del
* @property Grid\Column|Collection balance * @property Grid\Column|Collection balance
* @property Grid\Column|Collection is_operated * @property Grid\Column|Collection is_operated
* @property Grid\Column|Collection c_attitude * @property Grid\Column|Collection c_attitude
@ -1202,10 +1203,8 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection bank_name(string $label = null) * @method Grid\Column|Collection bank_name(string $label = null)
* @method Grid\Column|Collection bank_card(string $label = null) * @method Grid\Column|Collection bank_card(string $label = null)
* @method Grid\Column|Collection bank_addr(string $label = null) * @method Grid\Column|Collection bank_addr(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 status(string $label = null)
* @method Grid\Column|Collection market_id(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 logo(string $label = null)
* @method Grid\Column|Collection address(string $label = null) * @method Grid\Column|Collection address(string $label = null)
* @method Grid\Column|Collection introduce(string $label = null) * @method Grid\Column|Collection introduce(string $label = null)
@ -1218,11 +1217,15 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection dn_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 dm_poundage(string $label = null)
* @method Grid\Column|Collection yd_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 loudspeaker_imei(string $label = null)
* @method Grid\Column|Collection dishes_menu_intro(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 create_time(string $label = null)
* @method Grid\Column|Collection tel(string $label = null)
* @method Grid\Column|Collection is_rest(string $label = null)
* @method Grid\Column|Collection award_money(string $label = null)
* @method Grid\Column|Collection img(string $label = null)
* @method Grid\Column|Collection start_at(string $label = null)
* @method Grid\Column|Collection freight(string $label = null)
* @method Grid\Column|Collection money(string $label = null) * @method Grid\Column|Collection money(string $label = null)
* @method Grid\Column|Collection mp_id(string $label = null) * @method Grid\Column|Collection mp_id(string $label = null)
* @method Grid\Column|Collection is_pay(string $label = null) * @method Grid\Column|Collection is_pay(string $label = null)
@ -1415,7 +1418,6 @@ namespace Dcat\Admin {
* @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 store_id(string $label = null)
* @method Grid\Column|Collection img(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 time(string $label = null)
* @method Grid\Column|Collection order_id(string $label = null) * @method Grid\Column|Collection order_id(string $label = null)
@ -1553,6 +1555,8 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection waimai_pay_temp(string $label = null) * @method Grid\Column|Collection waimai_pay_temp(string $label = null)
* @method Grid\Column|Collection dangmian_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 ziti_pay_temp(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 deleted_at(string $label = null) * @method Grid\Column|Collection deleted_at(string $label = null)
* @method Grid\Column|Collection sender(string $label = null) * @method Grid\Column|Collection sender(string $label = null)
* @method Grid\Column|Collection is_email(string $label = null) * @method Grid\Column|Collection is_email(string $label = null)
@ -1603,7 +1607,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection ps_money(string $label = null) * @method Grid\Column|Collection ps_money(string $label = null)
* @method Grid\Column|Collection mj_money(string $label = null) * @method Grid\Column|Collection mj_money(string $label = null)
* @method Grid\Column|Collection xyh_money(string $label = null) * @method Grid\Column|Collection xyh_money(string $label = null)
* @method Grid\Column|Collection tel(string $label = null)
* @method Grid\Column|Collection jj_note(string $label = null) * @method Grid\Column|Collection jj_note(string $label = null)
* @method Grid\Column|Collection area(string $label = null) * @method Grid\Column|Collection area(string $label = null)
* @method Grid\Column|Collection del(string $label = null) * @method Grid\Column|Collection del(string $label = null)
@ -1650,6 +1653,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection total_money(string $label = null) * @method Grid\Column|Collection total_money(string $label = null)
* @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 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)
@ -1693,9 +1697,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection sss_shop_token(string $label = null) * @method Grid\Column|Collection sss_shop_token(string $label = null)
* @method Grid\Column|Collection time4(string $label = null) * @method Grid\Column|Collection time4(string $label = null)
* @method Grid\Column|Collection announcement(string $label = null) * @method Grid\Column|Collection announcement(string $label = null)
* @method Grid\Column|Collection is_rest(string $label = null)
* @method Grid\Column|Collection start_at(string $label = null)
* @method Grid\Column|Collection freight(string $label = null)
* @method Grid\Column|Collection yyzz(string $label = null) * @method Grid\Column|Collection yyzz(string $label = null)
* @method Grid\Column|Collection md_area(string $label = null) * @method Grid\Column|Collection md_area(string $label = null)
* @method Grid\Column|Collection md_type(string $label = null) * @method Grid\Column|Collection md_type(string $label = null)
@ -1722,7 +1723,6 @@ 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 award_money(string $label = null)
* @method Grid\Column|Collection mm_user_id(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 category(string $label = null)
@ -1871,6 +1871,7 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection order_money(string $label = null) * @method Grid\Column|Collection order_money(string $label = null)
* @method Grid\Column|Collection order_number(string $label = null) * @method Grid\Column|Collection order_number(string $label = null)
* @method Grid\Column|Collection hy_day(string $label = null) * @method Grid\Column|Collection hy_day(string $label = null)
* @method Grid\Column|Collection unionid(string $label = null)
* @method Grid\Column|Collection is_default(string $label = null) * @method Grid\Column|Collection is_default(string $label = null)
* @method Grid\Column|Collection yhk_num(string $label = null) * @method Grid\Column|Collection yhk_num(string $label = null)
* @method Grid\Column|Collection yh_info(string $label = null) * @method Grid\Column|Collection yh_info(string $label = null)
@ -2005,7 +2006,6 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection language(string $label = null) * @method Grid\Column|Collection language(string $label = null)
* @method Grid\Column|Collection headimgurl(string $label = null) * @method Grid\Column|Collection headimgurl(string $label = null)
* @method Grid\Column|Collection subscribe_time(string $label = null) * @method Grid\Column|Collection subscribe_time(string $label = null)
* @method Grid\Column|Collection unionid(string $label = null)
* @method Grid\Column|Collection groupid(string $label = null) * @method Grid\Column|Collection groupid(string $label = null)
* @method Grid\Column|Collection tagid_list(string $label = null) * @method Grid\Column|Collection tagid_list(string $label = null)
* @method Grid\Column|Collection subscribe_scene(string $label = null) * @method Grid\Column|Collection subscribe_scene(string $label = null)
@ -2319,6 +2319,8 @@ namespace Dcat\Admin {
* @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 admin_user_id(string $label = null)
* @method Grid\Column|Collection is_del(string $label = null)
* @method Grid\Column|Collection balance(string $label = null) * @method Grid\Column|Collection balance(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 c_attitude(string $label = null) * @method Grid\Column|Collection c_attitude(string $label = null)
@ -2369,10 +2371,8 @@ namespace Dcat\Admin {
* @property Show\Field|Collection bank_name * @property Show\Field|Collection bank_name
* @property Show\Field|Collection bank_card * @property Show\Field|Collection bank_card
* @property Show\Field|Collection bank_addr * @property Show\Field|Collection bank_addr
* @property Show\Field|Collection admin_user_id
* @property Show\Field|Collection status * @property Show\Field|Collection status
* @property Show\Field|Collection market_id * @property Show\Field|Collection market_id
* @property Show\Field|Collection is_del
* @property Show\Field|Collection logo * @property Show\Field|Collection logo
* @property Show\Field|Collection address * @property Show\Field|Collection address
* @property Show\Field|Collection introduce * @property Show\Field|Collection introduce
@ -2385,11 +2385,15 @@ namespace Dcat\Admin {
* @property Show\Field|Collection dn_poundage * @property Show\Field|Collection dn_poundage
* @property Show\Field|Collection dm_poundage * @property Show\Field|Collection dm_poundage
* @property Show\Field|Collection yd_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 loudspeaker_imei
* @property Show\Field|Collection dishes_menu_intro * @property Show\Field|Collection dishes_menu_intro
* @property Show\Field|Collection create_time * @property Show\Field|Collection create_time
* @property Show\Field|Collection tel
* @property Show\Field|Collection is_rest
* @property Show\Field|Collection award_money
* @property Show\Field|Collection img
* @property Show\Field|Collection start_at
* @property Show\Field|Collection freight
* @property Show\Field|Collection money * @property Show\Field|Collection money
* @property Show\Field|Collection mp_id * @property Show\Field|Collection mp_id
* @property Show\Field|Collection is_pay * @property Show\Field|Collection is_pay
@ -2582,7 +2586,6 @@ namespace Dcat\Admin {
* @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 store_id
* @property Show\Field|Collection img
* @property Show\Field|Collection stars * @property Show\Field|Collection stars
* @property Show\Field|Collection time * @property Show\Field|Collection time
* @property Show\Field|Collection order_id * @property Show\Field|Collection order_id
@ -2720,6 +2723,8 @@ namespace Dcat\Admin {
* @property Show\Field|Collection waimai_pay_temp * @property Show\Field|Collection waimai_pay_temp
* @property Show\Field|Collection dangmian_pay_temp * @property Show\Field|Collection dangmian_pay_temp
* @property Show\Field|Collection ziti_pay_temp * @property Show\Field|Collection ziti_pay_temp
* @property Show\Field|Collection dada_number
* @property Show\Field|Collection is_open_dada
* @property Show\Field|Collection deleted_at * @property Show\Field|Collection deleted_at
* @property Show\Field|Collection sender * @property Show\Field|Collection sender
* @property Show\Field|Collection is_email * @property Show\Field|Collection is_email
@ -2770,7 +2775,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection ps_money * @property Show\Field|Collection ps_money
* @property Show\Field|Collection mj_money * @property Show\Field|Collection mj_money
* @property Show\Field|Collection xyh_money * @property Show\Field|Collection xyh_money
* @property Show\Field|Collection tel
* @property Show\Field|Collection jj_note * @property Show\Field|Collection jj_note
* @property Show\Field|Collection area * @property Show\Field|Collection area
* @property Show\Field|Collection del * @property Show\Field|Collection del
@ -2817,6 +2821,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection total_money * @property Show\Field|Collection total_money
* @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 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
@ -2860,9 +2865,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection sss_shop_token * @property Show\Field|Collection sss_shop_token
* @property Show\Field|Collection time4 * @property Show\Field|Collection time4
* @property Show\Field|Collection announcement * @property Show\Field|Collection announcement
* @property Show\Field|Collection is_rest
* @property Show\Field|Collection start_at
* @property Show\Field|Collection freight
* @property Show\Field|Collection yyzz * @property Show\Field|Collection yyzz
* @property Show\Field|Collection md_area * @property Show\Field|Collection md_area
* @property Show\Field|Collection md_type * @property Show\Field|Collection md_type
@ -2889,7 +2891,6 @@ 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 award_money
* @property Show\Field|Collection mm_user_id * @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 category
@ -3038,6 +3039,7 @@ namespace Dcat\Admin {
* @property Show\Field|Collection order_money * @property Show\Field|Collection order_money
* @property Show\Field|Collection order_number * @property Show\Field|Collection order_number
* @property Show\Field|Collection hy_day * @property Show\Field|Collection hy_day
* @property Show\Field|Collection unionid
* @property Show\Field|Collection is_default * @property Show\Field|Collection is_default
* @property Show\Field|Collection yhk_num * @property Show\Field|Collection yhk_num
* @property Show\Field|Collection yh_info * @property Show\Field|Collection yh_info
@ -3172,7 +3174,6 @@ namespace Dcat\Admin {
* @property Show\Field|Collection language * @property Show\Field|Collection language
* @property Show\Field|Collection headimgurl * @property Show\Field|Collection headimgurl
* @property Show\Field|Collection subscribe_time * @property Show\Field|Collection subscribe_time
* @property Show\Field|Collection unionid
* @property Show\Field|Collection groupid * @property Show\Field|Collection groupid
* @property Show\Field|Collection tagid_list * @property Show\Field|Collection tagid_list
* @property Show\Field|Collection subscribe_scene * @property Show\Field|Collection subscribe_scene
@ -3486,6 +3487,8 @@ namespace Dcat\Admin {
* @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 admin_user_id
* @property Show\Field|Collection is_del
* @property Show\Field|Collection balance * @property Show\Field|Collection balance
* @property Show\Field|Collection is_operated * @property Show\Field|Collection is_operated
* @property Show\Field|Collection c_attitude * @property Show\Field|Collection c_attitude
@ -3531,10 +3534,8 @@ namespace Dcat\Admin {
* @method Show\Field|Collection bank_name(string $label = null) * @method Show\Field|Collection bank_name(string $label = null)
* @method Show\Field|Collection bank_card(string $label = null) * @method Show\Field|Collection bank_card(string $label = null)
* @method Show\Field|Collection bank_addr(string $label = null) * @method Show\Field|Collection bank_addr(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 status(string $label = null)
* @method Show\Field|Collection market_id(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 logo(string $label = null)
* @method Show\Field|Collection address(string $label = null) * @method Show\Field|Collection address(string $label = null)
* @method Show\Field|Collection introduce(string $label = null) * @method Show\Field|Collection introduce(string $label = null)
@ -3547,11 +3548,15 @@ namespace Dcat\Admin {
* @method Show\Field|Collection dn_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 dm_poundage(string $label = null)
* @method Show\Field|Collection yd_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 loudspeaker_imei(string $label = null)
* @method Show\Field|Collection dishes_menu_intro(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 create_time(string $label = null)
* @method Show\Field|Collection tel(string $label = null)
* @method Show\Field|Collection is_rest(string $label = null)
* @method Show\Field|Collection award_money(string $label = null)
* @method Show\Field|Collection img(string $label = null)
* @method Show\Field|Collection start_at(string $label = null)
* @method Show\Field|Collection freight(string $label = null)
* @method Show\Field|Collection money(string $label = null) * @method Show\Field|Collection money(string $label = null)
* @method Show\Field|Collection mp_id(string $label = null) * @method Show\Field|Collection mp_id(string $label = null)
* @method Show\Field|Collection is_pay(string $label = null) * @method Show\Field|Collection is_pay(string $label = null)
@ -3744,7 +3749,6 @@ namespace Dcat\Admin {
* @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 store_id(string $label = null)
* @method Show\Field|Collection img(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 time(string $label = null)
* @method Show\Field|Collection order_id(string $label = null) * @method Show\Field|Collection order_id(string $label = null)
@ -3882,6 +3886,8 @@ namespace Dcat\Admin {
* @method Show\Field|Collection waimai_pay_temp(string $label = null) * @method Show\Field|Collection waimai_pay_temp(string $label = null)
* @method Show\Field|Collection dangmian_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 ziti_pay_temp(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 deleted_at(string $label = null) * @method Show\Field|Collection deleted_at(string $label = null)
* @method Show\Field|Collection sender(string $label = null) * @method Show\Field|Collection sender(string $label = null)
* @method Show\Field|Collection is_email(string $label = null) * @method Show\Field|Collection is_email(string $label = null)
@ -3932,7 +3938,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection ps_money(string $label = null) * @method Show\Field|Collection ps_money(string $label = null)
* @method Show\Field|Collection mj_money(string $label = null) * @method Show\Field|Collection mj_money(string $label = null)
* @method Show\Field|Collection xyh_money(string $label = null) * @method Show\Field|Collection xyh_money(string $label = null)
* @method Show\Field|Collection tel(string $label = null)
* @method Show\Field|Collection jj_note(string $label = null) * @method Show\Field|Collection jj_note(string $label = null)
* @method Show\Field|Collection area(string $label = null) * @method Show\Field|Collection area(string $label = null)
* @method Show\Field|Collection del(string $label = null) * @method Show\Field|Collection del(string $label = null)
@ -3979,6 +3984,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection total_money(string $label = null) * @method Show\Field|Collection total_money(string $label = null)
* @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 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)
@ -4022,9 +4028,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection sss_shop_token(string $label = null) * @method Show\Field|Collection sss_shop_token(string $label = null)
* @method Show\Field|Collection time4(string $label = null) * @method Show\Field|Collection time4(string $label = null)
* @method Show\Field|Collection announcement(string $label = null) * @method Show\Field|Collection announcement(string $label = null)
* @method Show\Field|Collection is_rest(string $label = null)
* @method Show\Field|Collection start_at(string $label = null)
* @method Show\Field|Collection freight(string $label = null)
* @method Show\Field|Collection yyzz(string $label = null) * @method Show\Field|Collection yyzz(string $label = null)
* @method Show\Field|Collection md_area(string $label = null) * @method Show\Field|Collection md_area(string $label = null)
* @method Show\Field|Collection md_type(string $label = null) * @method Show\Field|Collection md_type(string $label = null)
@ -4051,7 +4054,6 @@ 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 award_money(string $label = null)
* @method Show\Field|Collection mm_user_id(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 category(string $label = null)
@ -4200,6 +4202,7 @@ namespace Dcat\Admin {
* @method Show\Field|Collection order_money(string $label = null) * @method Show\Field|Collection order_money(string $label = null)
* @method Show\Field|Collection order_number(string $label = null) * @method Show\Field|Collection order_number(string $label = null)
* @method Show\Field|Collection hy_day(string $label = null) * @method Show\Field|Collection hy_day(string $label = null)
* @method Show\Field|Collection unionid(string $label = null)
* @method Show\Field|Collection is_default(string $label = null) * @method Show\Field|Collection is_default(string $label = null)
* @method Show\Field|Collection yhk_num(string $label = null) * @method Show\Field|Collection yhk_num(string $label = null)
* @method Show\Field|Collection yh_info(string $label = null) * @method Show\Field|Collection yh_info(string $label = null)
@ -4334,7 +4337,6 @@ namespace Dcat\Admin {
* @method Show\Field|Collection language(string $label = null) * @method Show\Field|Collection language(string $label = null)
* @method Show\Field|Collection headimgurl(string $label = null) * @method Show\Field|Collection headimgurl(string $label = null)
* @method Show\Field|Collection subscribe_time(string $label = null) * @method Show\Field|Collection subscribe_time(string $label = null)
* @method Show\Field|Collection unionid(string $label = null)
* @method Show\Field|Collection groupid(string $label = null) * @method Show\Field|Collection groupid(string $label = null)
* @method Show\Field|Collection tagid_list(string $label = null) * @method Show\Field|Collection tagid_list(string $label = null)
* @method Show\Field|Collection subscribe_scene(string $label = null) * @method Show\Field|Collection subscribe_scene(string $label = null)
@ -4648,6 +4650,8 @@ namespace Dcat\Admin {
* @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 admin_user_id(string $label = null)
* @method Show\Field|Collection is_del(string $label = null)
* @method Show\Field|Collection balance(string $label = null) * @method Show\Field|Collection balance(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 c_attitude(string $label = null) * @method Show\Field|Collection c_attitude(string $label = null)

13
resources/lang/zh-CN/store-user-report.php

@ -0,0 +1,13 @@
<?php
return [
'labels' => [
'StoreUserReport' => 'StoreUserReport',
],
'fields' => [
'market_id' => '所属市场',
'name' => '商家名称',
'mm_user_id' => '所属市场经理',
],
'options' => [
],
];
Loading…
Cancel
Save