diff --git a/app/Admin/Controllers/LanzuServiceSpeakerController.php b/app/Admin/Controllers/LanzuServiceSpeakerController.php new file mode 100755 index 0000000..ff28abb --- /dev/null +++ b/app/Admin/Controllers/LanzuServiceSpeakerController.php @@ -0,0 +1,65 @@ +id->sortable(); + $grid->device_name; + $grid->store_id; + + $grid->created_at; + $grid->updated_at->sortable(); + + $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 LanzuServiceSpeaker(), function (Show $show) { + $show->id; + $show->created_at; + $show->updated_at; + }); + } + + /** + * Make a form builder. + * + * @return Form + */ + protected function form() + { + return Form::make(new LanzuServiceSpeaker(), function (Form $form) { + $form->display('id'); + + $form->display('created_at'); + $form->display('updated_at'); + }); + } +} diff --git a/app/Admin/Repositories/LanzuServiceSpeaker.php b/app/Admin/Repositories/LanzuServiceSpeaker.php new file mode 100755 index 0000000..cd094dc --- /dev/null +++ b/app/Admin/Repositories/LanzuServiceSpeaker.php @@ -0,0 +1,16 @@ +get('/', 'HomeController@index'); + $router->resource('/speaker', 'LanzuServiceSpeakerController'); }); diff --git a/app/Models/BaseModel.php b/app/Models/BaseModel.php new file mode 100644 index 0000000..b02b9d2 --- /dev/null +++ b/app/Models/BaseModel.php @@ -0,0 +1,10 @@ + [ // indigo, blue, blue-light, blue-dark, green - 'color' => 'indigo', + 'color' => 'green', 'body_class' => '', diff --git a/config/app.php b/config/app.php index 8409e00..b0b85b5 100644 --- a/config/app.php +++ b/config/app.php @@ -67,7 +67,7 @@ return [ | */ - 'timezone' => 'UTC', + 'timezone' => 'Asia/Shanghai', /* |-------------------------------------------------------------------------- @@ -80,7 +80,7 @@ return [ | */ - 'locale' => 'en', + 'locale' => 'zh-cn', /* |-------------------------------------------------------------------------- diff --git a/config/database.php b/config/database.php index 291ab53..ebef13f 100644 --- a/config/database.php +++ b/config/database.php @@ -54,7 +54,27 @@ return [ 'unix_socket' => env('DB_SOCKET', ''), 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', - 'prefix' => 'mp_', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mysql_no_prefix' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', 'prefix_indexes' => true, 'strict' => true, 'engine' => null, diff --git a/dcat_admin_ide_helper.php b/dcat_admin_ide_helper.php new file mode 100644 index 0000000..4b0cd0d --- /dev/null +++ b/dcat_admin_ide_helper.php @@ -0,0 +1,4601 @@ + + */ +namespace Dcat\Admin { + use Illuminate\Support\Collection; + + /** + * @property Grid\Column|Collection id + * @property Grid\Column|Collection username + * @property Grid\Column|Collection name + * @property Grid\Column|Collection roles + * @property Grid\Column|Collection permissions + * @property Grid\Column|Collection created_at + * @property Grid\Column|Collection updated_at + * @property Grid\Column|Collection avatar + * @property Grid\Column|Collection user + * @property Grid\Column|Collection method + * @property Grid\Column|Collection path + * @property Grid\Column|Collection ip + * @property Grid\Column|Collection input + * @property Grid\Column|Collection slug + * @property Grid\Column|Collection version + * @property Grid\Column|Collection alias + * @property Grid\Column|Collection authors + * @property Grid\Column|Collection enable + * @property Grid\Column|Collection imported + * @property Grid\Column|Collection config + * @property Grid\Column|Collection require + * @property Grid\Column|Collection require_dev + * @property Grid\Column|Collection robot_nickname + * @property Grid\Column|Collection is_use + * @property Grid\Column|Collection nickname + * @property Grid\Column|Collection password + * @property Grid\Column|Collection salt + * @property Grid\Column|Collection email + * @property Grid\Column|Collection loginfailure + * @property Grid\Column|Collection logintime + * @property Grid\Column|Collection loginip + * @property Grid\Column|Collection createtime + * @property Grid\Column|Collection updatetime + * @property Grid\Column|Collection token + * @property Grid\Column|Collection status + * @property Grid\Column|Collection market_id + * @property Grid\Column|Collection admin_id + * @property Grid\Column|Collection url + * @property Grid\Column|Collection content + * @property Grid\Column|Collection useragent + * @property Grid\Column|Collection pid + * @property Grid\Column|Collection shortname + * @property Grid\Column|Collection mergename + * @property Grid\Column|Collection level + * @property Grid\Column|Collection pinyin + * @property Grid\Column|Collection code + * @property Grid\Column|Collection zip + * @property Grid\Column|Collection first + * @property Grid\Column|Collection lng + * @property Grid\Column|Collection lat + * @property Grid\Column|Collection user_id + * @property Grid\Column|Collection imagewidth + * @property Grid\Column|Collection imageheight + * @property Grid\Column|Collection imagetype + * @property Grid\Column|Collection imageframes + * @property Grid\Column|Collection filesize + * @property Grid\Column|Collection mimetype + * @property Grid\Column|Collection extparam + * @property Grid\Column|Collection uploadtime + * @property Grid\Column|Collection storage + * @property Grid\Column|Collection sha1 + * @property Grid\Column|Collection rules + * @property Grid\Column|Collection uid + * @property Grid\Column|Collection group_id + * @property Grid\Column|Collection type + * @property Grid\Column|Collection icon + * @property Grid\Column|Collection condition + * @property Grid\Column|Collection remark + * @property Grid\Column|Collection ismenu + * @property Grid\Column|Collection weigh + * @property Grid\Column|Collection flag + * @property Grid\Column|Collection image + * @property Grid\Column|Collection keywords + * @property Grid\Column|Collection diyname + * @property Grid\Column|Collection params + * @property Grid\Column|Collection command + * @property Grid\Column|Collection executetime + * @property Grid\Column|Collection group + * @property Grid\Column|Collection tip + * @property Grid\Column|Collection value + * @property Grid\Column|Collection rule + * @property Grid\Column|Collection extend + * @property Grid\Column|Collection event + * @property Grid\Column|Collection times + * @property Grid\Column|Collection mobile + * @property Grid\Column|Collection category_id + * @property Grid\Column|Collection category_ids + * @property Grid\Column|Collection week + * @property Grid\Column|Collection genderdata + * @property Grid\Column|Collection hobbydata + * @property Grid\Column|Collection images + * @property Grid\Column|Collection attachfile + * @property Grid\Column|Collection city + * @property Grid\Column|Collection json + * @property Grid\Column|Collection price + * @property Grid\Column|Collection views + * @property Grid\Column|Collection startdate + * @property Grid\Column|Collection activitytime + * @property Grid\Column|Collection year + * @property Grid\Column|Collection refreshtime + * @property Grid\Column|Collection deletetime + * @property Grid\Column|Collection switch + * @property Grid\Column|Collection state + * @property Grid\Column|Collection gender + * @property Grid\Column|Collection birthday + * @property Grid\Column|Collection bio + * @property Grid\Column|Collection money + * @property Grid\Column|Collection score + * @property Grid\Column|Collection successions + * @property Grid\Column|Collection maxsuccessions + * @property Grid\Column|Collection prevtime + * @property Grid\Column|Collection joinip + * @property Grid\Column|Collection jointime + * @property Grid\Column|Collection verification + * @property Grid\Column|Collection before + * @property Grid\Column|Collection after + * @property Grid\Column|Collection memo + * @property Grid\Column|Collection expiretime + * @property Grid\Column|Collection oldversion + * @property Grid\Column|Collection newversion + * @property Grid\Column|Collection packagesize + * @property Grid\Column|Collection downloadurl + * @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 uniacid + * @property Grid\Column|Collection hash + * @property Grid\Column|Collection isconnect + * @property Grid\Column|Collection isdeleted + * @property Grid\Column|Collection endtime + * @property Grid\Column|Collection send_account_expire_status + * @property Grid\Column|Collection send_api_expire_status + * @property Grid\Column|Collection key + * @property Grid\Column|Collection appid + * @property Grid\Column|Collection secret + * @property Grid\Column|Collection encodingaeskey + * @property Grid\Column|Collection account + * @property Grid\Column|Collection original + * @property Grid\Column|Collection signature + * @property Grid\Column|Collection country + * @property Grid\Column|Collection province + * @property Grid\Column|Collection lastupdate + * @property Grid\Column|Collection styleid + * @property Grid\Column|Collection subscribeurl + * @property Grid\Column|Collection auth_refresh_token + * @property Grid\Column|Collection appdomain + * @property Grid\Column|Collection xzapp_id + * @property Grid\Column|Collection displayorder + * @property Grid\Column|Collection group_name + * @property Grid\Column|Collection permission + * @property Grid\Column|Collection system + * @property Grid\Column|Collection storeid + * @property Grid\Column|Collection openid + * @property Grid\Column|Collection articleid + * @property Grid\Column|Collection parentid + * @property Grid\Column|Collection is_like + * @property Grid\Column|Collection is_reply + * @property Grid\Column|Collection like_num + * @property Grid\Column|Collection cateid + * @property Grid\Column|Collection thumb + * @property Grid\Column|Collection source + * @property Grid\Column|Collection author + * @property Grid\Column|Collection is_display + * @property Grid\Column|Collection is_show_home + * @property Grid\Column|Collection click + * @property Grid\Column|Collection style + * @property Grid\Column|Collection notice_id + * @property Grid\Column|Collection is_new + * @property Grid\Column|Collection rid + * @property Grid\Column|Collection weid + * @property Grid\Column|Collection phone + * @property Grid\Column|Collection qq + * @property Grid\Column|Collection dist + * @property Grid\Column|Collection address + * @property Grid\Column|Collection industry1 + * @property Grid\Column|Collection industry2 + * @property Grid\Column|Collection from_user + * @property Grid\Column|Collection accountname + * @property Grid\Column|Collection pwd + * @property Grid\Column|Collection pay_account + * @property Grid\Column|Collection dateline + * @property Grid\Column|Collection role + * @property Grid\Column|Collection lastvisit + * @property Grid\Column|Collection lastip + * @property Grid\Column|Collection areaid + * @property Grid\Column|Collection is_admin_order + * @property Grid\Column|Collection is_notice_order + * @property Grid\Column|Collection is_notice_queue + * @property Grid\Column|Collection is_notice_service + * @property Grid\Column|Collection is_notice_boss + * @property Grid\Column|Collection authority + * @property Grid\Column|Collection logo + * @property Grid\Column|Collection src + * @property Grid\Column|Collection src2 + * @property Grid\Column|Collection created_time + * @property Grid\Column|Collection orderby + * @property Grid\Column|Collection xcx_name + * @property Grid\Column|Collection item + * @property Grid\Column|Collection area_name + * @property Grid\Column|Collection num + * @property Grid\Column|Collection store_id + * @property Grid\Column|Collection img + * @property Grid\Column|Collection stars + * @property Grid\Column|Collection time + * @property Grid\Column|Collection order_id + * @property Grid\Column|Collection hf + * @property Grid\Column|Collection hf_time + * @property Grid\Column|Collection is_open + * @property Grid\Column|Collection apikey + * @property Grid\Column|Collection table_id + * @property Grid\Column|Collection sh_time + * @property Grid\Column|Collection user_name + * @property Grid\Column|Collection tx_cost + * @property Grid\Column|Collection sj_cost + * @property Grid\Column|Collection day + * @property Grid\Column|Collection integral + * @property Grid\Column|Collection start_time + * @property Grid\Column|Collection end_time + * @property Grid\Column|Collection full + * @property Grid\Column|Collection reduce + * @property Grid\Column|Collection stock + * @property Grid\Column|Collection instruction + * @property Grid\Column|Collection type_id + * @property Grid\Column|Collection is_hy + * @property Grid\Column|Collection is_tjhb + * @property Grid\Column|Collection yhq_set + * @property Grid\Column|Collection time2 + * @property Grid\Column|Collection details + * @property Grid\Column|Collection reduction + * @property Grid\Column|Collection money2 + * @property Grid\Column|Collection form_id + * @property Grid\Column|Collection start + * @property Grid\Column|Collection end + * @property Grid\Column|Collection tag_id + * @property Grid\Column|Collection dyj_title + * @property Grid\Column|Collection dyj_id + * @property Grid\Column|Collection dyj_key + * @property Grid\Column|Collection api + * @property Grid\Column|Collection mid + * @property Grid\Column|Collection location + * @property Grid\Column|Collection yy_id + * @property Grid\Column|Collection fezh + * @property Grid\Column|Collection fe_ukey + * @property Grid\Column|Collection fe_dycode + * @property Grid\Column|Collection xx_sn + * @property Grid\Column|Collection tag_name + * @property Grid\Column|Collection sort + * @property Grid\Column|Collection son_id + * @property Grid\Column|Collection note + * @property Grid\Column|Collection sn + * @property Grid\Column|Collection simnum + * @property Grid\Column|Collection addtime + * @property Grid\Column|Collection fx_details + * @property Grid\Column|Collection tx_details + * @property Grid\Column|Collection is_fx + * @property Grid\Column|Collection is_ej + * @property Grid\Column|Collection is_type + * @property Grid\Column|Collection tx_rate + * @property Grid\Column|Collection dn_yj + * @property Grid\Column|Collection dn_ej + * @property Grid\Column|Collection wm_yj + * @property Grid\Column|Collection wm_ej + * @property Grid\Column|Collection tx_money + * @property Grid\Column|Collection img2 + * @property Grid\Column|Collection instructions + * @property Grid\Column|Collection fx_name + * @property Grid\Column|Collection is_check + * @property Grid\Column|Collection xx_name + * @property Grid\Column|Collection fx_user + * @property Grid\Column|Collection label_id + * @property Grid\Column|Collection vip_money + * @property Grid\Column|Collection dn_money + * @property Grid\Column|Collection is_show + * @property Grid\Column|Collection inventory + * @property Grid\Column|Collection sales + * @property Grid\Column|Collection is_gg + * @property Grid\Column|Collection is_hot + * @property Grid\Column|Collection is_zp + * @property Grid\Column|Collection quantity + * @property Grid\Column|Collection box_money + * @property Grid\Column|Collection is_tj + * @property Grid\Column|Collection restrict_num + * @property Grid\Column|Collection start_num + * @property Grid\Column|Collection dn_hymoney + * @property Grid\Column|Collection is_max + * @property Grid\Column|Collection good_unit + * @property Grid\Column|Collection goods_id + * @property Grid\Column|Collection goods_logo + * @property Grid\Column|Collection goods_name + * @property Grid\Column|Collection kt_num + * @property Grid\Column|Collection yg_num + * @property Grid\Column|Collection kt_time + * @property Grid\Column|Collection dq_time + * @property Grid\Column|Collection pt_price + * @property Grid\Column|Collection y_price + * @property Grid\Column|Collection dd_price + * @property Grid\Column|Collection ycd_num + * @property Grid\Column|Collection ysc_num + * @property Grid\Column|Collection people + * @property Grid\Column|Collection xf_time + * @property Grid\Column|Collection is_shelves + * @property Grid\Column|Collection display + * @property Grid\Column|Collection introduction + * @property Grid\Column|Collection hx_id + * @property Grid\Column|Collection order_num + * @property Grid\Column|Collection goods_type + * @property Grid\Column|Collection goods_num + * @property Grid\Column|Collection pay_type + * @property Grid\Column|Collection receive_name + * @property Grid\Column|Collection receive_tel + * @property Grid\Column|Collection receive_address + * @property Grid\Column|Collection pay_time + * @property Grid\Column|Collection cz_time + * @property Grid\Column|Collection question + * @property Grid\Column|Collection answer + * @property Grid\Column|Collection month + * @property Grid\Column|Collection user_tel + * @property Grid\Column|Collection days + * @property Grid\Column|Collection cerated_time + * @property Grid\Column|Collection goods_details + * @property Grid\Column|Collection process_details + * @property Grid\Column|Collection attention_details + * @property Grid\Column|Collection hb_moeny + * @property Grid\Column|Collection good_id + * @property Grid\Column|Collection good_name + * @property Grid\Column|Collection good_img + * @property Grid\Column|Collection access_token + * @property Grid\Column|Collection cityname + * @property Grid\Column|Collection bindto_id + * @property Grid\Column|Collection is_waimai_order_speak + * @property Grid\Column|Collection is_dangmian_order_speak + * @property Grid\Column|Collection is_ziti_order_speak + * @property Grid\Column|Collection is_waimai_pay_speak + * @property Grid\Column|Collection is_dangmian_pay_speak + * @property Grid\Column|Collection is_ziti_pay_speak + * @property Grid\Column|Collection waimai_order_temp + * @property Grid\Column|Collection dangmian_order_temp + * @property Grid\Column|Collection ziti_order_temp + * @property Grid\Column|Collection waimai_pay_temp + * @property Grid\Column|Collection dangmian_pay_temp + * @property Grid\Column|Collection ziti_pay_temp + * @property Grid\Column|Collection introduce + * @property Grid\Column|Collection imgs + * @property Grid\Column|Collection coordinates + * @property Grid\Column|Collection poundage + * @property Grid\Column|Collection dn_poundage + * @property Grid\Column|Collection dm_poundage + * @property Grid\Column|Collection yd_poundage + * @property Grid\Column|Collection dada_number + * @property Grid\Column|Collection is_open_dada + * @property Grid\Column|Collection loudspeaker_imei + * @property Grid\Column|Collection dishes_menu_intro + * @property Grid\Column|Collection create_time + * @property Grid\Column|Collection sender + * @property Grid\Column|Collection is_email + * @property Grid\Column|Collection xd_tid + * @property Grid\Column|Collection jd_tid + * @property Grid\Column|Collection yy_tid + * @property Grid\Column|Collection dm_tid + * @property Grid\Column|Collection sj_tid + * @property Grid\Column|Collection sj_tid2 + * @property Grid\Column|Collection wx_appid + * @property Grid\Column|Collection wx_secret + * @property Grid\Column|Collection is_dxyz + * @property Grid\Column|Collection appkey + * @property Grid\Column|Collection tpl_id + * @property Grid\Column|Collection jj_tid + * @property Grid\Column|Collection tk_tid + * @property Grid\Column|Collection rzsh_tid + * @property Grid\Column|Collection rzcg_tid + * @property Grid\Column|Collection rzjj_tid + * @property Grid\Column|Collection cz_tid + * @property Grid\Column|Collection xdd_tid + * @property Grid\Column|Collection xdd_tid2 + * @property Grid\Column|Collection qf_tid + * @property Grid\Column|Collection qh_tid + * @property Grid\Column|Collection tx_appkey + * @property Grid\Column|Collection template_id + * @property Grid\Column|Collection sign + * @property Grid\Column|Collection sjyy_tid + * @property Grid\Column|Collection shtk_tid + * @property Grid\Column|Collection aliyun_appkey + * @property Grid\Column|Collection aliyun_appsecret + * @property Grid\Column|Collection aliyun_sign + * @property Grid\Column|Collection aliyun_id + * @property Grid\Column|Collection group_tid + * @property Grid\Column|Collection rush_tid + * @property Grid\Column|Collection wechat_appId + * @property Grid\Column|Collection wechat_appsecret + * @property Grid\Column|Collection wechat_wm_tid + * @property Grid\Column|Collection fs_time + * @property Grid\Column|Collection title_color + * @property Grid\Column|Collection title_color2 + * @property Grid\Column|Collection logo2 + * @property Grid\Column|Collection typename + * @property Grid\Column|Collection order_main_id + * @property Grid\Column|Collection jd_time + * @property Grid\Column|Collection cancel_time + * @property Grid\Column|Collection complete_time + * @property Grid\Column|Collection ps_money + * @property Grid\Column|Collection mj_money + * @property Grid\Column|Collection xyh_money + * @property Grid\Column|Collection tel + * @property Grid\Column|Collection jj_note + * @property Grid\Column|Collection area + * @property Grid\Column|Collection del + * @property Grid\Column|Collection form_id2 + * @property Grid\Column|Collection order_type + * @property Grid\Column|Collection delivery_time + * @property Grid\Column|Collection sex + * @property Grid\Column|Collection discount + * @property Grid\Column|Collection tableware + * @property Grid\Column|Collection dd_info + * @property Grid\Column|Collection yhq_money + * @property Grid\Column|Collection coupon_id + * @property Grid\Column|Collection yhq_money2 + * @property Grid\Column|Collection coupon_id2 + * @property Grid\Column|Collection dn_state + * @property Grid\Column|Collection dm_state + * @property Grid\Column|Collection yy_state + * @property Grid\Column|Collection deposit + * @property Grid\Column|Collection ship_id + * @property Grid\Column|Collection zk_money + * @property Grid\Column|Collection is_dd + * @property Grid\Column|Collection pt_info + * @property Grid\Column|Collection kfw_info + * @property Grid\Column|Collection hb_type + * @property Grid\Column|Collection original_money + * @property Grid\Column|Collection oid + * @property Grid\Column|Collection sss_peisong_id + * @property Grid\Column|Collection time_add + * @property Grid\Column|Collection time_create + * @property Grid\Column|Collection dishes_id + * @property Grid\Column|Collection spec + * @property Grid\Column|Collection is_jc + * @property Grid\Column|Collection is_qg + * @property Grid\Column|Collection combination_id + * @property Grid\Column|Collection order_status + * @property Grid\Column|Collection update_time + * @property Grid\Column|Collection order_shipping_code + * @property Grid\Column|Collection shipping_name + * @property Grid\Column|Collection store_ids + * @property Grid\Column|Collection delivery_no + * @property Grid\Column|Collection dada_fee + * @property Grid\Column|Collection time_delivery + * @property Grid\Column|Collection time_pay + * @property Grid\Column|Collection total_money + * @property Grid\Column|Collection dada_status + * @property Grid\Column|Collection print_num + * @property Grid\Column|Collection mchid + * @property Grid\Column|Collection wxkey + * @property Grid\Column|Collection apiclient_cert + * @property Grid\Column|Collection apiclient_key + * @property Grid\Column|Collection jf_proportion + * @property Grid\Column|Collection integral2 + * @property Grid\Column|Collection source_id + * @property Grid\Column|Collection shop_no + * @property Grid\Column|Collection surplus + * @property Grid\Column|Collection consumption_time + * @property Grid\Column|Collection hot + * @property Grid\Column|Collection state2 + * @property Grid\Column|Collection qg_num + * @property Grid\Column|Collection good_logo + * @property Grid\Column|Collection hx_time + * @property Grid\Column|Collection label + * @property Grid\Column|Collection cjwt + * @property Grid\Column|Collection rzxy + * @property Grid\Column|Collection is_ruzhu + * @property Grid\Column|Collection is_img + * @property Grid\Column|Collection dr_id + * @property Grid\Column|Collection qg_name + * @property Grid\Column|Collection qg_logo + * @property Grid\Column|Collection time3 + * @property Grid\Column|Collection one + * @property Grid\Column|Collection is_bq + * @property Grid\Column|Collection bq_integral + * @property Grid\Column|Collection qd_img + * @property Grid\Column|Collection wm_tid + * @property Grid\Column|Collection dn_tid + * @property Grid\Column|Collection is_wm + * @property Grid\Column|Collection is_dn + * @property Grid\Column|Collection is_yy + * @property Grid\Column|Collection is_tk + * @property Grid\Column|Collection openId + * @property Grid\Column|Collection wm_money + * @property Grid\Column|Collection combination + * @property Grid\Column|Collection spec_id + * @property Grid\Column|Collection color + * @property Grid\Column|Collection sss_shop_id + * @property Grid\Column|Collection sss_shop_token + * @property Grid\Column|Collection time4 + * @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 md_area + * @property Grid\Column|Collection md_type + * @property Grid\Column|Collection capita + * @property Grid\Column|Collection tx_user + * @property Grid\Column|Collection environment + * @property Grid\Column|Collection is_brand + * @property Grid\Column|Collection rz_time + * @property Grid\Column|Collection rzdq_time + * @property Grid\Column|Collection sq_id + * @property Grid\Column|Collection zm_img + * @property Grid\Column|Collection fm_img + * @property Grid\Column|Collection zf_state + * @property Grid\Column|Collection link_name + * @property Grid\Column|Collection link_tel + * @property Grid\Column|Collection sq_time + * @property Grid\Column|Collection is_mp3 + * @property Grid\Column|Collection is_video + * @property Grid\Column|Collection store_mp3 + * @property Grid\Column|Collection store_video + * @property Grid\Column|Collection ps_poundage + * @property Grid\Column|Collection qrcode + * @property Grid\Column|Collection is_select + * @property Grid\Column|Collection store_mchid + * @property Grid\Column|Collection cash_code + * @property Grid\Column|Collection store_wallet + * @property Grid\Column|Collection award_money + * @property Grid\Column|Collection add_time + * @property Grid\Column|Collection category + * @property Grid\Column|Collection xyh_open + * @property Grid\Column|Collection is_jd + * @property Grid\Column|Collection is_jfpay + * @property Grid\Column|Collection is_yuepay + * @property Grid\Column|Collection is_yuejf + * @property Grid\Column|Collection is_wxpay + * @property Grid\Column|Collection is_pj + * @property Grid\Column|Collection is_chzf + * @property Grid\Column|Collection box_name + * @property Grid\Column|Collection yhq_name + * @property Grid\Column|Collection sy_name + * @property Grid\Column|Collection dn_name + * @property Grid\Column|Collection wm_name + * @property Grid\Column|Collection yy_name + * @property Grid\Column|Collection yhq_img + * @property Grid\Column|Collection sy_img + * @property Grid\Column|Collection dn_img + * @property Grid\Column|Collection wm_img + * @property Grid\Column|Collection yy_img + * @property Grid\Column|Collection is_yhq + * @property Grid\Column|Collection is_sy + * @property Grid\Column|Collection ps_time + * @property Grid\Column|Collection ps_mode + * @property Grid\Column|Collection ps_jl + * @property Grid\Column|Collection is_zt + * @property Grid\Column|Collection is_hdfk + * @property Grid\Column|Collection print_type + * @property Grid\Column|Collection ztxy + * @property Grid\Column|Collection top_style + * @property Grid\Column|Collection info_style + * @property Grid\Column|Collection yysm + * @property Grid\Column|Collection wmsm + * @property Grid\Column|Collection dnsm + * @property Grid\Column|Collection sysm + * @property Grid\Column|Collection is_wxzf + * @property Grid\Column|Collection print_mode + * @property Grid\Column|Collection is_yydc + * @property Grid\Column|Collection is_ps + * @property Grid\Column|Collection is_ps + * @property Grid\Column|Collection is_cj + * @property Grid\Column|Collection cj_name + * @property Grid\Column|Collection wmps_name + * @property Grid\Column|Collection is_czztpd + * @property Grid\Column|Collection is_dcyhq + * @property Grid\Column|Collection is_pt + * @property Grid\Column|Collection pt_name + * @property Grid\Column|Collection ptsm + * @property Grid\Column|Collection pt_img + * @property Grid\Column|Collection qgsm + * @property Grid\Column|Collection qg_img + * @property Grid\Column|Collection is_ydtime + * @property Grid\Column|Collection is_yyzw + * @property Grid\Column|Collection pd_name + * @property Grid\Column|Collection pdsm + * @property Grid\Column|Collection pd_img + * @property Grid\Column|Collection is_pd + * @property Grid\Column|Collection tz_src + * @property Grid\Column|Collection full_delivery + * @property Grid\Column|Collection is_poundage + * @property Grid\Column|Collection type_name + * @property Grid\Column|Collection appsecret + * @property Grid\Column|Collection url_name + * @property Grid\Column|Collection url_logo + * @property Grid\Column|Collection link_logo + * @property Grid\Column|Collection default_store + * @property Grid\Column|Collection support + * @property Grid\Column|Collection bq_logo + * @property Grid\Column|Collection bq_name + * @property Grid\Column|Collection map_key + * @property Grid\Column|Collection tz_appid + * @property Grid\Column|Collection tz_name + * @property Grid\Column|Collection dada_key + * @property Grid\Column|Collection dada_secret + * @property Grid\Column|Collection is_psxx + * @property Grid\Column|Collection jfgn + * @property Grid\Column|Collection msgn + * @property Grid\Column|Collection fxgn + * @property Grid\Column|Collection typeset + * @property Grid\Column|Collection dc_name + * @property Grid\Column|Collection yd_name + * @property Grid\Column|Collection gs_img + * @property Grid\Column|Collection gs_details + * @property Grid\Column|Collection gs_tel + * @property Grid\Column|Collection gs_time + * @property Grid\Column|Collection gs_add + * @property Grid\Column|Collection gs_zb + * @property Grid\Column|Collection kfw_appid + * @property Grid\Column|Collection kfw_appsecret + * @property Grid\Column|Collection fl_more + * @property Grid\Column|Collection tx_is_open_check + * @property Grid\Column|Collection tx_max_money + * @property Grid\Column|Collection tx_zdmoney + * @property Grid\Column|Collection tx_notice + * @property Grid\Column|Collection is_mdrz + * @property Grid\Column|Collection md_sh + * @property Grid\Column|Collection md_sf + * @property Grid\Column|Collection rz_details + * @property Grid\Column|Collection rz_title + * @property Grid\Column|Collection rz_ms + * @property Grid\Column|Collection countdown + * @property Grid\Column|Collection distance + * @property Grid\Column|Collection is_jf + * @property Grid\Column|Collection fx_title + * @property Grid\Column|Collection fx_title + * @property Grid\Column|Collection hygn + * @property Grid\Column|Collection hy_discount + * @property Grid\Column|Collection hy_details + * @property Grid\Column|Collection kt_details + * @property Grid\Column|Collection cz_notice + * @property Grid\Column|Collection is_cz + * @property Grid\Column|Collection hy_note + * @property Grid\Column|Collection ps_name + * @property Grid\Column|Collection is_tzms + * @property Grid\Column|Collection is_wx + * @property Grid\Column|Collection is_yhk + * @property Grid\Column|Collection is_sj + * @property Grid\Column|Collection is_dada + * @property Grid\Column|Collection is_kfw + * @property Grid\Column|Collection ptgn + * @property Grid\Column|Collection qggn + * @property Grid\Column|Collection is_zb + * @property Grid\Column|Collection isyykg + * @property Grid\Column|Collection zb_img + * @property Grid\Column|Collection is_pay + * @property Grid\Column|Collection pay_money + * @property Grid\Column|Collection is_vip_delivery + * @property Grid\Column|Collection is_tel + * @property Grid\Column|Collection is_sss + * @property Grid\Column|Collection sss_appkey + * @property Grid\Column|Collection sss_secret + * @property Grid\Column|Collection is_open_dada_fee + * @property Grid\Column|Collection menu_name + * @property Grid\Column|Collection info + * @property Grid\Column|Collection desc + * @property Grid\Column|Collection tag + * @property Grid\Column|Collection fw_cost + * @property Grid\Column|Collection zd_cost + * @property Grid\Column|Collection yd_cost + * @property Grid\Column|Collection order_by + * @property Grid\Column|Collection join_time + * @property Grid\Column|Collection total_score + * @property Grid\Column|Collection wallet + * @property Grid\Column|Collection commission + * @property Grid\Column|Collection order_money + * @property Grid\Column|Collection order_number + * @property Grid\Column|Collection hy_day + * @property Grid\Column|Collection is_default + * @property Grid\Column|Collection yhk_num + * @property Grid\Column|Collection yh_info + * @property Grid\Column|Collection pt_uniacid + * @property Grid\Column|Collection cy_uniacid + * @property Grid\Column|Collection goods_info + * @property Grid\Column|Collection goods_price + * @property Grid\Column|Collection sender_name + * @property Grid\Column|Collection sender_address + * @property Grid\Column|Collection sender_tel + * @property Grid\Column|Collection sender_lat + * @property Grid\Column|Collection sender_lng + * @property Grid\Column|Collection receiver_name + * @property Grid\Column|Collection receiver_address + * @property Grid\Column|Collection receiver_tel + * @property Grid\Column|Collection receiver_lat + * @property Grid\Column|Collection receiver_lng + * @property Grid\Column|Collection ps_num + * @property Grid\Column|Collection qs_id + * @property Grid\Column|Collection dd_time + * @property Grid\Column|Collection wc_time + * @property Grid\Column|Collection store_logo + * @property Grid\Column|Collection yh_money + * @property Grid\Column|Collection origin_id + * @property Grid\Column|Collection body + * @property Grid\Column|Collection appId + * @property Grid\Column|Collection appSecret + * @property Grid\Column|Collection jdId + * @property Grid\Column|Collection pdId + * @property Grid\Column|Collection weChatId + * @property Grid\Column|Collection client_ip + * @property Grid\Column|Collection bj_logo + * @property Grid\Column|Collection tpl_id2 + * @property Grid\Column|Collection tpl_id3 + * @property Grid\Column|Collection tpl_id4 + * @property Grid\Column|Collection tx_sxf + * @property Grid\Column|Collection db_logo + * @property Grid\Column|Collection db_content + * @property Grid\Column|Collection yc_money + * @property Grid\Column|Collection aliyun_id2 + * @property Grid\Column|Collection aliyun_id3 + * @property Grid\Column|Collection aliyun_id4 + * @property Grid\Column|Collection tx_num + * @property Grid\Column|Collection filename + * @property Grid\Column|Collection attachment + * @property Grid\Column|Collection module_upload_dir + * @property Grid\Column|Collection cloudid + * @property Grid\Column|Collection module + * @property Grid\Column|Collection lastruntime + * @property Grid\Column|Collection nextruntime + * @property Grid\Column|Collection weekday + * @property Grid\Column|Collection hour + * @property Grid\Column|Collection minute + * @property Grid\Column|Collection extra + * @property Grid\Column|Collection tid + * @property Grid\Column|Collection handled + * @property Grid\Column|Collection total + * @property Grid\Column|Collection append_title + * @property Grid\Column|Collection append_url + * @property Grid\Column|Collection is_system + * @property Grid\Column|Collection permission_name + * @property Grid\Column|Collection modulename + * @property Grid\Column|Collection position + * @property Grid\Column|Collection plid + * @property Grid\Column|Collection uniontid + * @property Grid\Column|Collection fee + * @property Grid\Column|Collection is_usecard + * @property Grid\Column|Collection card_type + * @property Grid\Column|Collection card_id + * @property Grid\Column|Collection card_fee + * @property Grid\Column|Collection encrypt_code + * @property Grid\Column|Collection is_wish + * @property Grid\Column|Collection runtime + * @property Grid\Column|Collection runurl + * @property Grid\Column|Collection runsql + * @property Grid\Column|Collection qid + * @property Grid\Column|Collection message + * @property Grid\Column|Collection keyword + * @property Grid\Column|Collection response + * @property Grid\Column|Collection refund_uniontid + * @property Grid\Column|Collection reason + * @property Grid\Column|Collection media_id + * @property Grid\Column|Collection trunk + * @property Grid\Column|Collection result + * @property Grid\Column|Collection sid + * @property Grid\Column|Collection data + * @property Grid\Column|Collection location_id + * @property Grid\Column|Collection business_name + * @property Grid\Column|Collection branch_name + * @property Grid\Column|Collection district + * @property Grid\Column|Collection longitude + * @property Grid\Column|Collection latitude + * @property Grid\Column|Collection telephone + * @property Grid\Column|Collection photo_list + * @property Grid\Column|Collection avg_price + * @property Grid\Column|Collection open_time + * @property Grid\Column|Collection recommend + * @property Grid\Column|Collection special + * @property Grid\Column|Collection offset_type + * @property Grid\Column|Collection multiid + * @property Grid\Column|Collection do + * @property Grid\Column|Collection start1 + * @property Grid\Column|Collection end1 + * @property Grid\Column|Collection start2 + * @property Grid\Column|Collection end2 + * @property Grid\Column|Collection intro + * @property Grid\Column|Collection difficulty + * @property Grid\Column|Collection cooking_time + * @property Grid\Column|Collection collection_num + * @property Grid\Column|Collection delete_time + * @property Grid\Column|Collection menu_id + * @property Grid\Column|Collection ingredients_id + * @property Grid\Column|Collection mediaid + * @property Grid\Column|Collection clerk_id + * @property Grid\Column|Collection clerk_type + * @property Grid\Column|Collection final_fee + * @property Grid\Column|Collection credit1 + * @property Grid\Column|Collection credit1_fee + * @property Grid\Column|Collection credit2 + * @property Grid\Column|Collection cash + * @property Grid\Column|Collection return_cash + * @property Grid\Column|Collection final_cash + * @property Grid\Column|Collection trade_type + * @property Grid\Column|Collection msgtype + * @property Grid\Column|Collection transid + * @property Grid\Column|Collection backtype + * @property Grid\Column|Collection credittype + * @property Grid\Column|Collection operator + * @property Grid\Column|Collection real_uniacid + * @property Grid\Column|Collection groups + * @property Grid\Column|Collection fanid + * @property Grid\Column|Collection subscribe + * @property Grid\Column|Collection language + * @property Grid\Column|Collection headimgurl + * @property Grid\Column|Collection subscribe_time + * @property Grid\Column|Collection unionid + * @property Grid\Column|Collection groupid + * @property Grid\Column|Collection tagid_list + * @property Grid\Column|Collection subscribe_scene + * @property Grid\Column|Collection qr_scene_str + * @property Grid\Column|Collection qr_scene + * @property Grid\Column|Collection tagid + * @property Grid\Column|Collection credit + * @property Grid\Column|Collection isdefault + * @property Grid\Column|Collection touid + * @property Grid\Column|Collection fromuid + * @property Grid\Column|Collection action + * @property Grid\Column|Collection credit_value + * @property Grid\Column|Collection follow + * @property Grid\Column|Collection followtime + * @property Grid\Column|Collection unfollowtime + * @property Grid\Column|Collection user_from + * @property Grid\Column|Collection centeruid + * @property Grid\Column|Collection groupname + * @property Grid\Column|Collection fansnum + * @property Grid\Column|Collection attach_id + * @property Grid\Column|Collection cron_id + * @property Grid\Column|Collection sendtime + * @property Grid\Column|Collection finalsendtime + * @property Grid\Column|Collection msg_id + * @property Grid\Column|Collection msg_data_id + * @property Grid\Column|Collection zipcode + * @property Grid\Column|Collection fieldid + * @property Grid\Column|Collection available + * @property Grid\Column|Collection property + * @property Grid\Column|Collection credit3 + * @property Grid\Column|Collection credit4 + * @property Grid\Column|Collection credit5 + * @property Grid\Column|Collection credit6 + * @property Grid\Column|Collection realname + * @property Grid\Column|Collection vip + * @property Grid\Column|Collection birthyear + * @property Grid\Column|Collection birthmonth + * @property Grid\Column|Collection constellation + * @property Grid\Column|Collection zodiac + * @property Grid\Column|Collection idcard + * @property Grid\Column|Collection studentid + * @property Grid\Column|Collection grade + * @property Grid\Column|Collection nationality + * @property Grid\Column|Collection resideprovince + * @property Grid\Column|Collection residecity + * @property Grid\Column|Collection residedist + * @property Grid\Column|Collection graduateschool + * @property Grid\Column|Collection company + * @property Grid\Column|Collection education + * @property Grid\Column|Collection occupation + * @property Grid\Column|Collection revenue + * @property Grid\Column|Collection affectivestatus + * @property Grid\Column|Collection lookingfor + * @property Grid\Column|Collection bloodtype + * @property Grid\Column|Collection height + * @property Grid\Column|Collection weight + * @property Grid\Column|Collection alipay + * @property Grid\Column|Collection msn + * @property Grid\Column|Collection taobao + * @property Grid\Column|Collection site + * @property Grid\Column|Collection interest + * @property Grid\Column|Collection pay_password + * @property Grid\Column|Collection oauth_openid + * @property Grid\Column|Collection picmd5 + * @property Grid\Column|Collection is_read + * @property Grid\Column|Collection migration_name + * @property Grid\Column|Collection breakpoint + * @property Grid\Column|Collection enabled + * @property Grid\Column|Collection ability + * @property Grid\Column|Collection settings + * @property Grid\Column|Collection subscribes + * @property Grid\Column|Collection handles + * @property Grid\Column|Collection isrulefields + * @property Grid\Column|Collection issystem + * @property Grid\Column|Collection target + * @property Grid\Column|Collection iscard + * @property Grid\Column|Collection title_initial + * @property Grid\Column|Collection wxapp_support + * @property Grid\Column|Collection welcome_support + * @property Grid\Column|Collection oauth_type + * @property Grid\Column|Collection webapp_support + * @property Grid\Column|Collection phoneapp_support + * @property Grid\Column|Collection account_support + * @property Grid\Column|Collection xzapp_support + * @property Grid\Column|Collection aliapp_support + * @property Grid\Column|Collection baiduapp_support + * @property Grid\Column|Collection toutiaoapp_support + * @property Grid\Column|Collection from + * @property Grid\Column|Collection cloud_record + * @property Grid\Column|Collection eid + * @property Grid\Column|Collection entry + * @property Grid\Column|Collection direct + * @property Grid\Column|Collection multilevel + * @property Grid\Column|Collection parent + * @property Grid\Column|Collection install_status + * @property Grid\Column|Collection main_module_name + * @property Grid\Column|Collection main_module_logo + * @property Grid\Column|Collection has_new_version + * @property Grid\Column|Collection has_new_branch + * @property Grid\Column|Collection is_ban + * @property Grid\Column|Collection lastupdatetime + * @property Grid\Column|Collection cloud_id + * @property Grid\Column|Collection buytime + * @property Grid\Column|Collection module_status + * @property Grid\Column|Collection main_module + * @property Grid\Column|Collection rank + * @property Grid\Column|Collection plugin_name + * @property Grid\Column|Collection module_name + * @property Grid\Column|Collection hqurl + * @property Grid\Column|Collection parent_id + * @property Grid\Column|Collection incontent + * @property Grid\Column|Collection modules + * @property Grid\Column|Collection required + * @property Grid\Column|Collection unchangeable + * @property Grid\Column|Collection showinregister + * @property Grid\Column|Collection field_length + * @property Grid\Column|Collection qrcid + * @property Grid\Column|Collection scene_str + * @property Grid\Column|Collection ticket + * @property Grid\Column|Collection expire + * @property Grid\Column|Collection subnum + * @property Grid\Column|Collection containtype + * @property Grid\Column|Collection kid + * @property Grid\Column|Collection iscommend + * @property Grid\Column|Collection ishot + * @property Grid\Column|Collection pcate + * @property Grid\Column|Collection ccate + * @property Grid\Column|Collection template + * @property Grid\Column|Collection linkurl + * @property Grid\Column|Collection edittime + * @property Grid\Column|Collection iscomment + * @property Grid\Column|Collection nid + * @property Grid\Column|Collection ishomepage + * @property Grid\Column|Collection icontype + * @property Grid\Column|Collection css + * @property Grid\Column|Collection site_info + * @property Grid\Column|Collection bindhost + * @property Grid\Column|Collection section + * @property Grid\Column|Collection categoryid + * @property Grid\Column|Collection html + * @property Grid\Column|Collection multipage + * @property Grid\Column|Collection goodnum + * @property Grid\Column|Collection founder_uid + * @property Grid\Column|Collection amount + * @property Grid\Column|Collection order_amount + * @property Grid\Column|Collection cash_log_id + * @property Grid\Column|Collection account_num + * @property Grid\Column|Collection wxapp_num + * @property Grid\Column|Collection unit + * @property Grid\Column|Collection slide + * @property Grid\Column|Collection synopsis + * @property Grid\Column|Collection module_group + * @property Grid\Column|Collection api_num + * @property Grid\Column|Collection user_group_price + * @property Grid\Column|Collection user_group + * @property Grid\Column|Collection account_group + * @property Grid\Column|Collection platform_num + * @property Grid\Column|Collection aliapp_num + * @property Grid\Column|Collection baiduapp_num + * @property Grid\Column|Collection phoneapp_num + * @property Grid\Column|Collection toutiaoapp_num + * @property Grid\Column|Collection webapp_num + * @property Grid\Column|Collection xzapp_num + * @property Grid\Column|Collection wish_branch + * @property Grid\Column|Collection is_edited + * @property Grid\Column|Collection branchs + * @property Grid\Column|Collection orderid + * @property Grid\Column|Collection goodsid + * @property Grid\Column|Collection duration + * @property Grid\Column|Collection buyer + * @property Grid\Column|Collection buyerid + * @property Grid\Column|Collection changeprice + * @property Grid\Column|Collection wxapp + * @property Grid\Column|Collection templateid + * @property Grid\Column|Collection variable + * @property Grid\Column|Collection sections + * @property Grid\Column|Collection new + * @property Grid\Column|Collection cancel + * @property Grid\Column|Collection cumulate + * @property Grid\Column|Collection date + * @property Grid\Column|Collection hit + * @property Grid\Column|Collection count + * @property Grid\Column|Collection ip_count + * @property Grid\Column|Collection full_amount + * @property Grid\Column|Collection discounts + * @property Grid\Column|Collection is_new_user + * @property Grid\Column|Collection inventory_use + * @property Grid\Column|Collection storetype_id + * @property Grid\Column|Collection active_type + * @property Grid\Column|Collection usable_number + * @property Grid\Column|Collection usable_start_time + * @property Grid\Column|Collection usable_end_time + * @property Grid\Column|Collection add_user_id + * @property Grid\Column|Collection update_user_id + * @property Grid\Column|Collection discount_type + * @property Grid\Column|Collection system_coupon_user_id + * @property Grid\Column|Collection receive_time + * @property Grid\Column|Collection number_remain + * @property Grid\Column|Collection receive_type + * @property Grid\Column|Collection one_receive_number + * @property Grid\Column|Collection user_receive_id + * @property Grid\Column|Collection system_coupon_id + * @property Grid\Column|Collection use_time + * @property Grid\Column|Collection return_time + * @property Grid\Column|Collection default_acid + * @property Grid\Column|Collection menuid + * @property Grid\Column|Collection client_platform_type + * @property Grid\Column|Collection shortcut + * @property Grid\Column|Collection version_id + * @property Grid\Column|Collection owner_uid + * @property Grid\Column|Collection templates + * @property Grid\Column|Collection link_uniacid + * @property Grid\Column|Collection passport + * @property Grid\Column|Collection oauth + * @property Grid\Column|Collection jsauth_acid + * @property Grid\Column|Collection notify + * @property Grid\Column|Collection creditnames + * @property Grid\Column|Collection creditbehaviors + * @property Grid\Column|Collection welcome + * @property Grid\Column|Collection default + * @property Grid\Column|Collection default_message + * @property Grid\Column|Collection payment + * @property Grid\Column|Collection stat + * @property Grid\Column|Collection default_site + * @property Grid\Column|Collection sync + * @property Grid\Column|Collection recharge + * @property Grid\Column|Collection tplnotice + * @property Grid\Column|Collection grouplevel + * @property Grid\Column|Collection mcplugin + * @property Grid\Column|Collection exchange_enable + * @property Grid\Column|Collection coupon_type + * @property Grid\Column|Collection menuset + * @property Grid\Column|Collection statistics + * @property Grid\Column|Collection bind_domain + * @property Grid\Column|Collection comment_status + * @property Grid\Column|Collection reply_setting + * @property Grid\Column|Collection default_module + * @property Grid\Column|Collection attachment_limit + * @property Grid\Column|Collection attachment_size + * @property Grid\Column|Collection sync_member + * @property Grid\Column|Collection remote + * @property Grid\Column|Collection receiver + * @property Grid\Column|Collection verifycode + * @property Grid\Column|Collection failed_count + * @property Grid\Column|Collection apiurl + * @property Grid\Column|Collection default_text + * @property Grid\Column|Collection cachetime + * @property Grid\Column|Collection founder_groupid + * @property Grid\Column|Collection joindate + * @property Grid\Column|Collection starttime + * @property Grid\Column|Collection register_type + * @property Grid\Column|Collection welcome_link + * @property Grid\Column|Collection notice_setting + * @property Grid\Column|Collection is_bind + * @property Grid\Column|Collection user_category + * @property Grid\Column|Collection token_expire + * @property Grid\Column|Collection bind_sign + * @property Grid\Column|Collection third_type + * @property Grid\Column|Collection third_nickname + * @property Grid\Column|Collection maxaccount + * @property Grid\Column|Collection maxwxapp + * @property Grid\Column|Collection maxwebapp + * @property Grid\Column|Collection maxphoneapp + * @property Grid\Column|Collection maxxzapp + * @property Grid\Column|Collection maxaliapp + * @property Grid\Column|Collection maxbaiduapp + * @property Grid\Column|Collection maxtoutiaoapp + * @property Grid\Column|Collection uni_group_id + * @property Grid\Column|Collection create_group_id + * @property Grid\Column|Collection timelimit + * @property Grid\Column|Collection package + * @property Grid\Column|Collection users_group_id + * @property Grid\Column|Collection inviteuid + * @property Grid\Column|Collection login_at + * @property Grid\Column|Collection fakeid + * @property Grid\Column|Collection workerid + * @property Grid\Column|Collection is_send_mobile_status + * @property Grid\Column|Collection send_expire_status + * @property Grid\Column|Collection width + * @property Grid\Column|Collection thumb_media_id + * @property Grid\Column|Collection thumb_url + * @property Grid\Column|Collection digest + * @property Grid\Column|Collection content_source_url + * @property Grid\Column|Collection show_cover_pic + * @property Grid\Column|Collection need_open_comment + * @property Grid\Column|Collection only_fans_can_comment + * @property Grid\Column|Collection session_cnt + * @property Grid\Column|Collection visit_pv + * @property Grid\Column|Collection visit_uv + * @property Grid\Column|Collection visit_uv_new + * @property Grid\Column|Collection stay_time_uv + * @property Grid\Column|Collection stay_time_session + * @property Grid\Column|Collection visit_depth + * @property Grid\Column|Collection ref_date + * @property Grid\Column|Collection design_method + * @property Grid\Column|Collection quickmenu + * @property Grid\Column|Collection entry_id + * @property Grid\Column|Collection appjson + * @property Grid\Column|Collection default_appjson + * @property Grid\Column|Collection use_default + * @property Grid\Column|Collection last_modules + * @property Grid\Column|Collection tominiprogram + * @property Grid\Column|Collection upload_time + * @property Grid\Column|Collection cid + * @property Grid\Column|Collection brand_name + * @property Grid\Column|Collection logo_url + * @property Grid\Column|Collection success + * @property Grid\Column|Collection error + * @property Grid\Column|Collection c_attitude + * @property Grid\Column|Collection c_service + * @property Grid\Column|Collection c_quality + * @property Grid\Column|Collection c_average + * @property Grid\Column|Collection service_personnel_id + * @property Grid\Column|Collection user_created_at + * @property Grid\Column|Collection qr_url + * @property Grid\Column|Collection head_url + * @property Grid\Column|Collection device_name + * @property Grid\Column|Collection bind_time + * @property Grid\Column|Collection order + * @property Grid\Column|Collection uri + * @property Grid\Column|Collection permission_id + * @property Grid\Column|Collection http_method + * @property Grid\Column|Collection http_path + * @property Grid\Column|Collection role_id + * @property Grid\Column|Collection remember_token + * @property Grid\Column|Collection migration + * @property Grid\Column|Collection batch + * @property Grid\Column|Collection email_verified_at + * + * @method Grid\Column|Collection id(string $label = null) + * @method Grid\Column|Collection username(string $label = null) + * @method Grid\Column|Collection name(string $label = null) + * @method Grid\Column|Collection roles(string $label = null) + * @method Grid\Column|Collection permissions(string $label = null) + * @method Grid\Column|Collection created_at(string $label = null) + * @method Grid\Column|Collection updated_at(string $label = null) + * @method Grid\Column|Collection avatar(string $label = null) + * @method Grid\Column|Collection user(string $label = null) + * @method Grid\Column|Collection method(string $label = null) + * @method Grid\Column|Collection path(string $label = null) + * @method Grid\Column|Collection ip(string $label = null) + * @method Grid\Column|Collection input(string $label = null) + * @method Grid\Column|Collection slug(string $label = null) + * @method Grid\Column|Collection version(string $label = null) + * @method Grid\Column|Collection alias(string $label = null) + * @method Grid\Column|Collection authors(string $label = null) + * @method Grid\Column|Collection enable(string $label = null) + * @method Grid\Column|Collection imported(string $label = null) + * @method Grid\Column|Collection config(string $label = null) + * @method Grid\Column|Collection require(string $label = null) + * @method Grid\Column|Collection require_dev(string $label = null) + * @method Grid\Column|Collection robot_nickname(string $label = null) + * @method Grid\Column|Collection is_use(string $label = null) + * @method Grid\Column|Collection nickname(string $label = null) + * @method Grid\Column|Collection password(string $label = null) + * @method Grid\Column|Collection salt(string $label = null) + * @method Grid\Column|Collection email(string $label = null) + * @method Grid\Column|Collection loginfailure(string $label = null) + * @method Grid\Column|Collection logintime(string $label = null) + * @method Grid\Column|Collection loginip(string $label = null) + * @method Grid\Column|Collection createtime(string $label = null) + * @method Grid\Column|Collection updatetime(string $label = null) + * @method Grid\Column|Collection token(string $label = null) + * @method Grid\Column|Collection status(string $label = null) + * @method Grid\Column|Collection market_id(string $label = null) + * @method Grid\Column|Collection admin_id(string $label = null) + * @method Grid\Column|Collection url(string $label = null) + * @method Grid\Column|Collection content(string $label = null) + * @method Grid\Column|Collection useragent(string $label = null) + * @method Grid\Column|Collection pid(string $label = null) + * @method Grid\Column|Collection shortname(string $label = null) + * @method Grid\Column|Collection mergename(string $label = null) + * @method Grid\Column|Collection level(string $label = null) + * @method Grid\Column|Collection pinyin(string $label = null) + * @method Grid\Column|Collection code(string $label = null) + * @method Grid\Column|Collection zip(string $label = null) + * @method Grid\Column|Collection first(string $label = null) + * @method Grid\Column|Collection lng(string $label = null) + * @method Grid\Column|Collection lat(string $label = null) + * @method Grid\Column|Collection user_id(string $label = null) + * @method Grid\Column|Collection imagewidth(string $label = null) + * @method Grid\Column|Collection imageheight(string $label = null) + * @method Grid\Column|Collection imagetype(string $label = null) + * @method Grid\Column|Collection imageframes(string $label = null) + * @method Grid\Column|Collection filesize(string $label = null) + * @method Grid\Column|Collection mimetype(string $label = null) + * @method Grid\Column|Collection extparam(string $label = null) + * @method Grid\Column|Collection uploadtime(string $label = null) + * @method Grid\Column|Collection storage(string $label = null) + * @method Grid\Column|Collection sha1(string $label = null) + * @method Grid\Column|Collection rules(string $label = null) + * @method Grid\Column|Collection uid(string $label = null) + * @method Grid\Column|Collection group_id(string $label = null) + * @method Grid\Column|Collection type(string $label = null) + * @method Grid\Column|Collection icon(string $label = null) + * @method Grid\Column|Collection condition(string $label = null) + * @method Grid\Column|Collection remark(string $label = null) + * @method Grid\Column|Collection ismenu(string $label = null) + * @method Grid\Column|Collection weigh(string $label = null) + * @method Grid\Column|Collection flag(string $label = null) + * @method Grid\Column|Collection image(string $label = null) + * @method Grid\Column|Collection keywords(string $label = null) + * @method Grid\Column|Collection diyname(string $label = null) + * @method Grid\Column|Collection params(string $label = null) + * @method Grid\Column|Collection command(string $label = null) + * @method Grid\Column|Collection executetime(string $label = null) + * @method Grid\Column|Collection group(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 extend(string $label = null) + * @method Grid\Column|Collection event(string $label = null) + * @method Grid\Column|Collection times(string $label = null) + * @method Grid\Column|Collection mobile(string $label = null) + * @method Grid\Column|Collection category_id(string $label = null) + * @method Grid\Column|Collection category_ids(string $label = null) + * @method Grid\Column|Collection week(string $label = null) + * @method Grid\Column|Collection genderdata(string $label = null) + * @method Grid\Column|Collection hobbydata(string $label = null) + * @method Grid\Column|Collection images(string $label = null) + * @method Grid\Column|Collection attachfile(string $label = null) + * @method Grid\Column|Collection city(string $label = null) + * @method Grid\Column|Collection json(string $label = null) + * @method Grid\Column|Collection price(string $label = null) + * @method Grid\Column|Collection views(string $label = null) + * @method Grid\Column|Collection startdate(string $label = null) + * @method Grid\Column|Collection activitytime(string $label = null) + * @method Grid\Column|Collection year(string $label = null) + * @method Grid\Column|Collection refreshtime(string $label = null) + * @method Grid\Column|Collection deletetime(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 birthday(string $label = null) + * @method Grid\Column|Collection bio(string $label = null) + * @method Grid\Column|Collection money(string $label = null) + * @method Grid\Column|Collection score(string $label = null) + * @method Grid\Column|Collection successions(string $label = null) + * @method Grid\Column|Collection maxsuccessions(string $label = null) + * @method Grid\Column|Collection prevtime(string $label = null) + * @method Grid\Column|Collection joinip(string $label = null) + * @method Grid\Column|Collection jointime(string $label = null) + * @method Grid\Column|Collection verification(string $label = null) + * @method Grid\Column|Collection before(string $label = null) + * @method Grid\Column|Collection after(string $label = null) + * @method Grid\Column|Collection memo(string $label = null) + * @method Grid\Column|Collection expiretime(string $label = null) + * @method Grid\Column|Collection oldversion(string $label = null) + * @method Grid\Column|Collection newversion(string $label = null) + * @method Grid\Column|Collection packagesize(string $label = null) + * @method Grid\Column|Collection downloadurl(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 uniacid(string $label = null) + * @method Grid\Column|Collection hash(string $label = null) + * @method Grid\Column|Collection isconnect(string $label = null) + * @method Grid\Column|Collection isdeleted(string $label = null) + * @method Grid\Column|Collection endtime(string $label = null) + * @method Grid\Column|Collection send_account_expire_status(string $label = null) + * @method Grid\Column|Collection send_api_expire_status(string $label = null) + * @method Grid\Column|Collection key(string $label = null) + * @method Grid\Column|Collection appid(string $label = null) + * @method Grid\Column|Collection secret(string $label = null) + * @method Grid\Column|Collection encodingaeskey(string $label = null) + * @method Grid\Column|Collection account(string $label = null) + * @method Grid\Column|Collection original(string $label = null) + * @method Grid\Column|Collection signature(string $label = null) + * @method Grid\Column|Collection country(string $label = null) + * @method Grid\Column|Collection province(string $label = null) + * @method Grid\Column|Collection lastupdate(string $label = null) + * @method Grid\Column|Collection styleid(string $label = null) + * @method Grid\Column|Collection subscribeurl(string $label = null) + * @method Grid\Column|Collection auth_refresh_token(string $label = null) + * @method Grid\Column|Collection appdomain(string $label = null) + * @method Grid\Column|Collection xzapp_id(string $label = null) + * @method Grid\Column|Collection displayorder(string $label = null) + * @method Grid\Column|Collection group_name(string $label = null) + * @method Grid\Column|Collection permission(string $label = null) + * @method Grid\Column|Collection system(string $label = null) + * @method Grid\Column|Collection storeid(string $label = null) + * @method Grid\Column|Collection openid(string $label = null) + * @method Grid\Column|Collection articleid(string $label = null) + * @method Grid\Column|Collection parentid(string $label = null) + * @method Grid\Column|Collection is_like(string $label = null) + * @method Grid\Column|Collection is_reply(string $label = null) + * @method Grid\Column|Collection like_num(string $label = null) + * @method Grid\Column|Collection cateid(string $label = null) + * @method Grid\Column|Collection thumb(string $label = null) + * @method Grid\Column|Collection source(string $label = null) + * @method Grid\Column|Collection author(string $label = null) + * @method Grid\Column|Collection is_display(string $label = null) + * @method Grid\Column|Collection is_show_home(string $label = null) + * @method Grid\Column|Collection click(string $label = null) + * @method Grid\Column|Collection style(string $label = null) + * @method Grid\Column|Collection notice_id(string $label = null) + * @method Grid\Column|Collection is_new(string $label = null) + * @method Grid\Column|Collection rid(string $label = null) + * @method Grid\Column|Collection weid(string $label = null) + * @method Grid\Column|Collection phone(string $label = null) + * @method Grid\Column|Collection qq(string $label = null) + * @method Grid\Column|Collection dist(string $label = null) + * @method Grid\Column|Collection address(string $label = null) + * @method Grid\Column|Collection industry1(string $label = null) + * @method Grid\Column|Collection industry2(string $label = null) + * @method Grid\Column|Collection from_user(string $label = null) + * @method Grid\Column|Collection accountname(string $label = null) + * @method Grid\Column|Collection pwd(string $label = null) + * @method Grid\Column|Collection pay_account(string $label = null) + * @method Grid\Column|Collection dateline(string $label = null) + * @method Grid\Column|Collection role(string $label = null) + * @method Grid\Column|Collection lastvisit(string $label = null) + * @method Grid\Column|Collection lastip(string $label = null) + * @method Grid\Column|Collection areaid(string $label = null) + * @method Grid\Column|Collection is_admin_order(string $label = null) + * @method Grid\Column|Collection is_notice_order(string $label = null) + * @method Grid\Column|Collection is_notice_queue(string $label = null) + * @method Grid\Column|Collection is_notice_service(string $label = null) + * @method Grid\Column|Collection is_notice_boss(string $label = null) + * @method Grid\Column|Collection authority(string $label = null) + * @method Grid\Column|Collection logo(string $label = null) + * @method Grid\Column|Collection src(string $label = null) + * @method Grid\Column|Collection src2(string $label = null) + * @method Grid\Column|Collection created_time(string $label = null) + * @method Grid\Column|Collection orderby(string $label = null) + * @method Grid\Column|Collection xcx_name(string $label = null) + * @method Grid\Column|Collection item(string $label = null) + * @method Grid\Column|Collection area_name(string $label = null) + * @method Grid\Column|Collection num(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 time(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_time(string $label = null) + * @method Grid\Column|Collection is_open(string $label = null) + * @method Grid\Column|Collection apikey(string $label = null) + * @method Grid\Column|Collection table_id(string $label = null) + * @method Grid\Column|Collection sh_time(string $label = null) + * @method Grid\Column|Collection user_name(string $label = null) + * @method Grid\Column|Collection tx_cost(string $label = null) + * @method Grid\Column|Collection sj_cost(string $label = null) + * @method Grid\Column|Collection day(string $label = null) + * @method Grid\Column|Collection integral(string $label = null) + * @method Grid\Column|Collection start_time(string $label = null) + * @method Grid\Column|Collection end_time(string $label = null) + * @method Grid\Column|Collection full(string $label = null) + * @method Grid\Column|Collection reduce(string $label = null) + * @method Grid\Column|Collection stock(string $label = null) + * @method Grid\Column|Collection instruction(string $label = null) + * @method Grid\Column|Collection type_id(string $label = null) + * @method Grid\Column|Collection is_hy(string $label = null) + * @method Grid\Column|Collection is_tjhb(string $label = null) + * @method Grid\Column|Collection yhq_set(string $label = null) + * @method Grid\Column|Collection time2(string $label = null) + * @method Grid\Column|Collection details(string $label = null) + * @method Grid\Column|Collection reduction(string $label = null) + * @method Grid\Column|Collection money2(string $label = null) + * @method Grid\Column|Collection form_id(string $label = null) + * @method Grid\Column|Collection start(string $label = null) + * @method Grid\Column|Collection end(string $label = null) + * @method Grid\Column|Collection tag_id(string $label = null) + * @method Grid\Column|Collection dyj_title(string $label = null) + * @method Grid\Column|Collection dyj_id(string $label = null) + * @method Grid\Column|Collection dyj_key(string $label = null) + * @method Grid\Column|Collection api(string $label = null) + * @method Grid\Column|Collection mid(string $label = null) + * @method Grid\Column|Collection location(string $label = null) + * @method Grid\Column|Collection yy_id(string $label = null) + * @method Grid\Column|Collection fezh(string $label = null) + * @method Grid\Column|Collection fe_ukey(string $label = null) + * @method Grid\Column|Collection fe_dycode(string $label = null) + * @method Grid\Column|Collection xx_sn(string $label = null) + * @method Grid\Column|Collection tag_name(string $label = null) + * @method Grid\Column|Collection sort(string $label = null) + * @method Grid\Column|Collection son_id(string $label = null) + * @method Grid\Column|Collection note(string $label = null) + * @method Grid\Column|Collection sn(string $label = null) + * @method Grid\Column|Collection simnum(string $label = null) + * @method Grid\Column|Collection addtime(string $label = null) + * @method Grid\Column|Collection fx_details(string $label = null) + * @method Grid\Column|Collection tx_details(string $label = null) + * @method Grid\Column|Collection is_fx(string $label = null) + * @method Grid\Column|Collection is_ej(string $label = null) + * @method Grid\Column|Collection is_type(string $label = null) + * @method Grid\Column|Collection tx_rate(string $label = null) + * @method Grid\Column|Collection dn_yj(string $label = null) + * @method Grid\Column|Collection dn_ej(string $label = null) + * @method Grid\Column|Collection wm_yj(string $label = null) + * @method Grid\Column|Collection wm_ej(string $label = null) + * @method Grid\Column|Collection tx_money(string $label = null) + * @method Grid\Column|Collection img2(string $label = null) + * @method Grid\Column|Collection instructions(string $label = null) + * @method Grid\Column|Collection fx_name(string $label = null) + * @method Grid\Column|Collection is_check(string $label = null) + * @method Grid\Column|Collection xx_name(string $label = null) + * @method Grid\Column|Collection fx_user(string $label = null) + * @method Grid\Column|Collection label_id(string $label = null) + * @method Grid\Column|Collection vip_money(string $label = null) + * @method Grid\Column|Collection dn_money(string $label = null) + * @method Grid\Column|Collection is_show(string $label = null) + * @method Grid\Column|Collection inventory(string $label = null) + * @method Grid\Column|Collection sales(string $label = null) + * @method Grid\Column|Collection is_gg(string $label = null) + * @method Grid\Column|Collection is_hot(string $label = null) + * @method Grid\Column|Collection is_zp(string $label = null) + * @method Grid\Column|Collection quantity(string $label = null) + * @method Grid\Column|Collection box_money(string $label = null) + * @method Grid\Column|Collection is_tj(string $label = null) + * @method Grid\Column|Collection restrict_num(string $label = null) + * @method Grid\Column|Collection start_num(string $label = null) + * @method Grid\Column|Collection dn_hymoney(string $label = null) + * @method Grid\Column|Collection is_max(string $label = null) + * @method Grid\Column|Collection good_unit(string $label = null) + * @method Grid\Column|Collection goods_id(string $label = null) + * @method Grid\Column|Collection goods_logo(string $label = null) + * @method Grid\Column|Collection goods_name(string $label = null) + * @method Grid\Column|Collection kt_num(string $label = null) + * @method Grid\Column|Collection yg_num(string $label = null) + * @method Grid\Column|Collection kt_time(string $label = null) + * @method Grid\Column|Collection dq_time(string $label = null) + * @method Grid\Column|Collection pt_price(string $label = null) + * @method Grid\Column|Collection y_price(string $label = null) + * @method Grid\Column|Collection dd_price(string $label = null) + * @method Grid\Column|Collection ycd_num(string $label = null) + * @method Grid\Column|Collection ysc_num(string $label = null) + * @method Grid\Column|Collection people(string $label = null) + * @method Grid\Column|Collection xf_time(string $label = null) + * @method Grid\Column|Collection is_shelves(string $label = null) + * @method Grid\Column|Collection display(string $label = null) + * @method Grid\Column|Collection introduction(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_num(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_tel(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 question(string $label = null) + * @method Grid\Column|Collection answer(string $label = null) + * @method Grid\Column|Collection month(string $label = null) + * @method Grid\Column|Collection user_tel(string $label = null) + * @method Grid\Column|Collection days(string $label = null) + * @method Grid\Column|Collection cerated_time(string $label = null) + * @method Grid\Column|Collection goods_details(string $label = null) + * @method Grid\Column|Collection process_details(string $label = null) + * @method Grid\Column|Collection attention_details(string $label = null) + * @method Grid\Column|Collection hb_moeny(string $label = null) + * @method Grid\Column|Collection good_id(string $label = null) + * @method Grid\Column|Collection good_name(string $label = null) + * @method Grid\Column|Collection good_img(string $label = null) + * @method Grid\Column|Collection access_token(string $label = null) + * @method Grid\Column|Collection cityname(string $label = null) + * @method Grid\Column|Collection bindto_id(string $label = null) + * @method Grid\Column|Collection is_waimai_order_speak(string $label = null) + * @method Grid\Column|Collection is_dangmian_order_speak(string $label = null) + * @method Grid\Column|Collection is_ziti_order_speak(string $label = null) + * @method Grid\Column|Collection is_waimai_pay_speak(string $label = null) + * @method Grid\Column|Collection is_dangmian_pay_speak(string $label = null) + * @method Grid\Column|Collection is_ziti_pay_speak(string $label = null) + * @method Grid\Column|Collection waimai_order_temp(string $label = null) + * @method Grid\Column|Collection dangmian_order_temp(string $label = null) + * @method Grid\Column|Collection ziti_order_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 ziti_pay_temp(string $label = null) + * @method Grid\Column|Collection introduce(string $label = null) + * @method Grid\Column|Collection imgs(string $label = null) + * @method Grid\Column|Collection coordinates(string $label = null) + * @method Grid\Column|Collection poundage(string $label = null) + * @method Grid\Column|Collection dn_poundage(string $label = null) + * @method Grid\Column|Collection dm_poundage(string $label = null) + * @method Grid\Column|Collection yd_poundage(string $label = null) + * @method Grid\Column|Collection dada_number(string $label = null) + * @method Grid\Column|Collection is_open_dada(string $label = null) + * @method Grid\Column|Collection loudspeaker_imei(string $label = null) + * @method Grid\Column|Collection dishes_menu_intro(string $label = null) + * @method Grid\Column|Collection create_time(string $label = null) + * @method Grid\Column|Collection sender(string $label = null) + * @method Grid\Column|Collection is_email(string $label = null) + * @method Grid\Column|Collection xd_tid(string $label = null) + * @method Grid\Column|Collection jd_tid(string $label = null) + * @method Grid\Column|Collection yy_tid(string $label = null) + * @method Grid\Column|Collection dm_tid(string $label = null) + * @method Grid\Column|Collection sj_tid(string $label = null) + * @method Grid\Column|Collection sj_tid2(string $label = null) + * @method Grid\Column|Collection wx_appid(string $label = null) + * @method Grid\Column|Collection wx_secret(string $label = null) + * @method Grid\Column|Collection is_dxyz(string $label = null) + * @method Grid\Column|Collection appkey(string $label = null) + * @method Grid\Column|Collection tpl_id(string $label = null) + * @method Grid\Column|Collection jj_tid(string $label = null) + * @method Grid\Column|Collection tk_tid(string $label = null) + * @method Grid\Column|Collection rzsh_tid(string $label = null) + * @method Grid\Column|Collection rzcg_tid(string $label = null) + * @method Grid\Column|Collection rzjj_tid(string $label = null) + * @method Grid\Column|Collection cz_tid(string $label = null) + * @method Grid\Column|Collection xdd_tid(string $label = null) + * @method Grid\Column|Collection xdd_tid2(string $label = null) + * @method Grid\Column|Collection qf_tid(string $label = null) + * @method Grid\Column|Collection qh_tid(string $label = null) + * @method Grid\Column|Collection tx_appkey(string $label = null) + * @method Grid\Column|Collection template_id(string $label = null) + * @method Grid\Column|Collection sign(string $label = null) + * @method Grid\Column|Collection sjyy_tid(string $label = null) + * @method Grid\Column|Collection shtk_tid(string $label = null) + * @method Grid\Column|Collection aliyun_appkey(string $label = null) + * @method Grid\Column|Collection aliyun_appsecret(string $label = null) + * @method Grid\Column|Collection aliyun_sign(string $label = null) + * @method Grid\Column|Collection aliyun_id(string $label = null) + * @method Grid\Column|Collection group_tid(string $label = null) + * @method Grid\Column|Collection rush_tid(string $label = null) + * @method Grid\Column|Collection wechat_appId(string $label = null) + * @method Grid\Column|Collection wechat_appsecret(string $label = null) + * @method Grid\Column|Collection wechat_wm_tid(string $label = null) + * @method Grid\Column|Collection fs_time(string $label = null) + * @method Grid\Column|Collection title_color(string $label = null) + * @method Grid\Column|Collection title_color2(string $label = null) + * @method Grid\Column|Collection logo2(string $label = null) + * @method Grid\Column|Collection typename(string $label = null) + * @method Grid\Column|Collection order_main_id(string $label = null) + * @method Grid\Column|Collection jd_time(string $label = null) + * @method Grid\Column|Collection cancel_time(string $label = null) + * @method Grid\Column|Collection complete_time(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 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 area(string $label = null) + * @method Grid\Column|Collection del(string $label = null) + * @method Grid\Column|Collection form_id2(string $label = null) + * @method Grid\Column|Collection order_type(string $label = null) + * @method Grid\Column|Collection delivery_time(string $label = null) + * @method Grid\Column|Collection sex(string $label = null) + * @method Grid\Column|Collection discount(string $label = null) + * @method Grid\Column|Collection tableware(string $label = null) + * @method Grid\Column|Collection dd_info(string $label = null) + * @method Grid\Column|Collection yhq_money(string $label = null) + * @method Grid\Column|Collection coupon_id(string $label = null) + * @method Grid\Column|Collection yhq_money2(string $label = null) + * @method Grid\Column|Collection coupon_id2(string $label = null) + * @method Grid\Column|Collection dn_state(string $label = null) + * @method Grid\Column|Collection dm_state(string $label = null) + * @method Grid\Column|Collection yy_state(string $label = null) + * @method Grid\Column|Collection deposit(string $label = null) + * @method Grid\Column|Collection ship_id(string $label = null) + * @method Grid\Column|Collection zk_money(string $label = null) + * @method Grid\Column|Collection is_dd(string $label = null) + * @method Grid\Column|Collection pt_info(string $label = null) + * @method Grid\Column|Collection kfw_info(string $label = null) + * @method Grid\Column|Collection hb_type(string $label = null) + * @method Grid\Column|Collection original_money(string $label = null) + * @method Grid\Column|Collection oid(string $label = null) + * @method Grid\Column|Collection sss_peisong_id(string $label = null) + * @method Grid\Column|Collection time_add(string $label = null) + * @method Grid\Column|Collection time_create(string $label = null) + * @method Grid\Column|Collection dishes_id(string $label = null) + * @method Grid\Column|Collection spec(string $label = null) + * @method Grid\Column|Collection is_jc(string $label = null) + * @method Grid\Column|Collection is_qg(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 update_time(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 store_ids(string $label = null) + * @method Grid\Column|Collection delivery_no(string $label = null) + * @method Grid\Column|Collection dada_fee(string $label = null) + * @method Grid\Column|Collection time_delivery(string $label = null) + * @method Grid\Column|Collection time_pay(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 print_num(string $label = null) + * @method Grid\Column|Collection mchid(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_key(string $label = null) + * @method Grid\Column|Collection jf_proportion(string $label = null) + * @method Grid\Column|Collection integral2(string $label = null) + * @method Grid\Column|Collection source_id(string $label = null) + * @method Grid\Column|Collection shop_no(string $label = null) + * @method Grid\Column|Collection surplus(string $label = null) + * @method Grid\Column|Collection consumption_time(string $label = null) + * @method Grid\Column|Collection hot(string $label = null) + * @method Grid\Column|Collection state2(string $label = null) + * @method Grid\Column|Collection qg_num(string $label = null) + * @method Grid\Column|Collection good_logo(string $label = null) + * @method Grid\Column|Collection hx_time(string $label = null) + * @method Grid\Column|Collection label(string $label = null) + * @method Grid\Column|Collection cjwt(string $label = null) + * @method Grid\Column|Collection rzxy(string $label = null) + * @method Grid\Column|Collection is_ruzhu(string $label = null) + * @method Grid\Column|Collection is_img(string $label = null) + * @method Grid\Column|Collection dr_id(string $label = null) + * @method Grid\Column|Collection qg_name(string $label = null) + * @method Grid\Column|Collection qg_logo(string $label = null) + * @method Grid\Column|Collection time3(string $label = null) + * @method Grid\Column|Collection one(string $label = null) + * @method Grid\Column|Collection is_bq(string $label = null) + * @method Grid\Column|Collection bq_integral(string $label = null) + * @method Grid\Column|Collection qd_img(string $label = null) + * @method Grid\Column|Collection wm_tid(string $label = null) + * @method Grid\Column|Collection dn_tid(string $label = null) + * @method Grid\Column|Collection is_wm(string $label = null) + * @method Grid\Column|Collection is_dn(string $label = null) + * @method Grid\Column|Collection is_yy(string $label = null) + * @method Grid\Column|Collection is_tk(string $label = null) + * @method Grid\Column|Collection openId(string $label = null) + * @method Grid\Column|Collection wm_money(string $label = null) + * @method Grid\Column|Collection combination(string $label = null) + * @method Grid\Column|Collection spec_id(string $label = null) + * @method Grid\Column|Collection color(string $label = null) + * @method Grid\Column|Collection sss_shop_id(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 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 md_area(string $label = null) + * @method Grid\Column|Collection md_type(string $label = null) + * @method Grid\Column|Collection capita(string $label = null) + * @method Grid\Column|Collection tx_user(string $label = null) + * @method Grid\Column|Collection environment(string $label = null) + * @method Grid\Column|Collection is_brand(string $label = null) + * @method Grid\Column|Collection rz_time(string $label = null) + * @method Grid\Column|Collection rzdq_time(string $label = null) + * @method Grid\Column|Collection sq_id(string $label = null) + * @method Grid\Column|Collection zm_img(string $label = null) + * @method Grid\Column|Collection fm_img(string $label = null) + * @method Grid\Column|Collection zf_state(string $label = null) + * @method Grid\Column|Collection link_name(string $label = null) + * @method Grid\Column|Collection link_tel(string $label = null) + * @method Grid\Column|Collection sq_time(string $label = null) + * @method Grid\Column|Collection is_mp3(string $label = null) + * @method Grid\Column|Collection is_video(string $label = null) + * @method Grid\Column|Collection store_mp3(string $label = null) + * @method Grid\Column|Collection store_video(string $label = null) + * @method Grid\Column|Collection ps_poundage(string $label = null) + * @method Grid\Column|Collection qrcode(string $label = null) + * @method Grid\Column|Collection is_select(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 store_wallet(string $label = null) + * @method Grid\Column|Collection award_money(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 is_jd(string $label = null) + * @method Grid\Column|Collection is_jfpay(string $label = null) + * @method Grid\Column|Collection is_yuepay(string $label = null) + * @method Grid\Column|Collection is_yuejf(string $label = null) + * @method Grid\Column|Collection is_wxpay(string $label = null) + * @method Grid\Column|Collection is_pj(string $label = null) + * @method Grid\Column|Collection is_chzf(string $label = null) + * @method Grid\Column|Collection box_name(string $label = null) + * @method Grid\Column|Collection yhq_name(string $label = null) + * @method Grid\Column|Collection sy_name(string $label = null) + * @method Grid\Column|Collection dn_name(string $label = null) + * @method Grid\Column|Collection wm_name(string $label = null) + * @method Grid\Column|Collection yy_name(string $label = null) + * @method Grid\Column|Collection yhq_img(string $label = null) + * @method Grid\Column|Collection sy_img(string $label = null) + * @method Grid\Column|Collection dn_img(string $label = null) + * @method Grid\Column|Collection wm_img(string $label = null) + * @method Grid\Column|Collection yy_img(string $label = null) + * @method Grid\Column|Collection is_yhq(string $label = null) + * @method Grid\Column|Collection is_sy(string $label = null) + * @method Grid\Column|Collection ps_time(string $label = null) + * @method Grid\Column|Collection ps_mode(string $label = null) + * @method Grid\Column|Collection ps_jl(string $label = null) + * @method Grid\Column|Collection is_zt(string $label = null) + * @method Grid\Column|Collection is_hdfk(string $label = null) + * @method Grid\Column|Collection print_type(string $label = null) + * @method Grid\Column|Collection ztxy(string $label = null) + * @method Grid\Column|Collection top_style(string $label = null) + * @method Grid\Column|Collection info_style(string $label = null) + * @method Grid\Column|Collection yysm(string $label = null) + * @method Grid\Column|Collection wmsm(string $label = null) + * @method Grid\Column|Collection dnsm(string $label = null) + * @method Grid\Column|Collection sysm(string $label = null) + * @method Grid\Column|Collection is_wxzf(string $label = null) + * @method Grid\Column|Collection print_mode(string $label = null) + * @method Grid\Column|Collection is_yydc(string $label = null) + * @method Grid\Column|Collection is_ps(string $label = null) + * @method Grid\Column|Collection is_ps(string $label = null) + * @method Grid\Column|Collection is_cj(string $label = null) + * @method Grid\Column|Collection cj_name(string $label = null) + * @method Grid\Column|Collection wmps_name(string $label = null) + * @method Grid\Column|Collection is_czztpd(string $label = null) + * @method Grid\Column|Collection is_dcyhq(string $label = null) + * @method Grid\Column|Collection is_pt(string $label = null) + * @method Grid\Column|Collection pt_name(string $label = null) + * @method Grid\Column|Collection ptsm(string $label = null) + * @method Grid\Column|Collection pt_img(string $label = null) + * @method Grid\Column|Collection qgsm(string $label = null) + * @method Grid\Column|Collection qg_img(string $label = null) + * @method Grid\Column|Collection is_ydtime(string $label = null) + * @method Grid\Column|Collection is_yyzw(string $label = null) + * @method Grid\Column|Collection pd_name(string $label = null) + * @method Grid\Column|Collection pdsm(string $label = null) + * @method Grid\Column|Collection pd_img(string $label = null) + * @method Grid\Column|Collection is_pd(string $label = null) + * @method Grid\Column|Collection tz_src(string $label = null) + * @method Grid\Column|Collection full_delivery(string $label = null) + * @method Grid\Column|Collection is_poundage(string $label = null) + * @method Grid\Column|Collection type_name(string $label = null) + * @method Grid\Column|Collection appsecret(string $label = null) + * @method Grid\Column|Collection url_name(string $label = null) + * @method Grid\Column|Collection url_logo(string $label = null) + * @method Grid\Column|Collection link_logo(string $label = null) + * @method Grid\Column|Collection default_store(string $label = null) + * @method Grid\Column|Collection support(string $label = null) + * @method Grid\Column|Collection bq_logo(string $label = null) + * @method Grid\Column|Collection bq_name(string $label = null) + * @method Grid\Column|Collection map_key(string $label = null) + * @method Grid\Column|Collection tz_appid(string $label = null) + * @method Grid\Column|Collection tz_name(string $label = null) + * @method Grid\Column|Collection dada_key(string $label = null) + * @method Grid\Column|Collection dada_secret(string $label = null) + * @method Grid\Column|Collection is_psxx(string $label = null) + * @method Grid\Column|Collection jfgn(string $label = null) + * @method Grid\Column|Collection msgn(string $label = null) + * @method Grid\Column|Collection fxgn(string $label = null) + * @method Grid\Column|Collection typeset(string $label = null) + * @method Grid\Column|Collection dc_name(string $label = null) + * @method Grid\Column|Collection yd_name(string $label = null) + * @method Grid\Column|Collection gs_img(string $label = null) + * @method Grid\Column|Collection gs_details(string $label = null) + * @method Grid\Column|Collection gs_tel(string $label = null) + * @method Grid\Column|Collection gs_time(string $label = null) + * @method Grid\Column|Collection gs_add(string $label = null) + * @method Grid\Column|Collection gs_zb(string $label = null) + * @method Grid\Column|Collection kfw_appid(string $label = null) + * @method Grid\Column|Collection kfw_appsecret(string $label = null) + * @method Grid\Column|Collection fl_more(string $label = null) + * @method Grid\Column|Collection tx_is_open_check(string $label = null) + * @method Grid\Column|Collection tx_max_money(string $label = null) + * @method Grid\Column|Collection tx_zdmoney(string $label = null) + * @method Grid\Column|Collection tx_notice(string $label = null) + * @method Grid\Column|Collection is_mdrz(string $label = null) + * @method Grid\Column|Collection md_sh(string $label = null) + * @method Grid\Column|Collection md_sf(string $label = null) + * @method Grid\Column|Collection rz_details(string $label = null) + * @method Grid\Column|Collection rz_title(string $label = null) + * @method Grid\Column|Collection rz_ms(string $label = null) + * @method Grid\Column|Collection countdown(string $label = null) + * @method Grid\Column|Collection distance(string $label = null) + * @method Grid\Column|Collection is_jf(string $label = null) + * @method Grid\Column|Collection fx_title(string $label = null) + * @method Grid\Column|Collection fx_title(string $label = null) + * @method Grid\Column|Collection hygn(string $label = null) + * @method Grid\Column|Collection hy_discount(string $label = null) + * @method Grid\Column|Collection hy_details(string $label = null) + * @method Grid\Column|Collection kt_details(string $label = null) + * @method Grid\Column|Collection cz_notice(string $label = null) + * @method Grid\Column|Collection is_cz(string $label = null) + * @method Grid\Column|Collection hy_note(string $label = null) + * @method Grid\Column|Collection ps_name(string $label = null) + * @method Grid\Column|Collection is_tzms(string $label = null) + * @method Grid\Column|Collection is_wx(string $label = null) + * @method Grid\Column|Collection is_yhk(string $label = null) + * @method Grid\Column|Collection is_sj(string $label = null) + * @method Grid\Column|Collection is_dada(string $label = null) + * @method Grid\Column|Collection is_kfw(string $label = null) + * @method Grid\Column|Collection ptgn(string $label = null) + * @method Grid\Column|Collection qggn(string $label = null) + * @method Grid\Column|Collection is_zb(string $label = null) + * @method Grid\Column|Collection isyykg(string $label = null) + * @method Grid\Column|Collection zb_img(string $label = null) + * @method Grid\Column|Collection is_pay(string $label = null) + * @method Grid\Column|Collection pay_money(string $label = null) + * @method Grid\Column|Collection is_vip_delivery(string $label = null) + * @method Grid\Column|Collection is_tel(string $label = null) + * @method Grid\Column|Collection is_sss(string $label = null) + * @method Grid\Column|Collection sss_appkey(string $label = null) + * @method Grid\Column|Collection sss_secret(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 info(string $label = null) + * @method Grid\Column|Collection desc(string $label = null) + * @method Grid\Column|Collection tag(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 yd_cost(string $label = null) + * @method Grid\Column|Collection order_by(string $label = null) + * @method Grid\Column|Collection join_time(string $label = null) + * @method Grid\Column|Collection total_score(string $label = null) + * @method Grid\Column|Collection wallet(string $label = null) + * @method Grid\Column|Collection commission(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 hy_day(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 yh_info(string $label = null) + * @method Grid\Column|Collection pt_uniacid(string $label = null) + * @method Grid\Column|Collection cy_uniacid(string $label = null) + * @method Grid\Column|Collection goods_info(string $label = null) + * @method Grid\Column|Collection goods_price(string $label = null) + * @method Grid\Column|Collection sender_name(string $label = null) + * @method Grid\Column|Collection sender_address(string $label = null) + * @method Grid\Column|Collection sender_tel(string $label = null) + * @method Grid\Column|Collection sender_lat(string $label = null) + * @method Grid\Column|Collection sender_lng(string $label = null) + * @method Grid\Column|Collection receiver_name(string $label = null) + * @method Grid\Column|Collection receiver_address(string $label = null) + * @method Grid\Column|Collection receiver_tel(string $label = null) + * @method Grid\Column|Collection receiver_lat(string $label = null) + * @method Grid\Column|Collection receiver_lng(string $label = null) + * @method Grid\Column|Collection ps_num(string $label = null) + * @method Grid\Column|Collection qs_id(string $label = null) + * @method Grid\Column|Collection dd_time(string $label = null) + * @method Grid\Column|Collection wc_time(string $label = null) + * @method Grid\Column|Collection store_logo(string $label = null) + * @method Grid\Column|Collection yh_money(string $label = null) + * @method Grid\Column|Collection origin_id(string $label = null) + * @method Grid\Column|Collection body(string $label = null) + * @method Grid\Column|Collection appId(string $label = null) + * @method Grid\Column|Collection appSecret(string $label = null) + * @method Grid\Column|Collection jdId(string $label = null) + * @method Grid\Column|Collection pdId(string $label = null) + * @method Grid\Column|Collection weChatId(string $label = null) + * @method Grid\Column|Collection client_ip(string $label = null) + * @method Grid\Column|Collection bj_logo(string $label = null) + * @method Grid\Column|Collection tpl_id2(string $label = null) + * @method Grid\Column|Collection tpl_id3(string $label = null) + * @method Grid\Column|Collection tpl_id4(string $label = null) + * @method Grid\Column|Collection tx_sxf(string $label = null) + * @method Grid\Column|Collection db_logo(string $label = null) + * @method Grid\Column|Collection db_content(string $label = null) + * @method Grid\Column|Collection yc_money(string $label = null) + * @method Grid\Column|Collection aliyun_id2(string $label = null) + * @method Grid\Column|Collection aliyun_id3(string $label = null) + * @method Grid\Column|Collection aliyun_id4(string $label = null) + * @method Grid\Column|Collection tx_num(string $label = null) + * @method Grid\Column|Collection filename(string $label = null) + * @method Grid\Column|Collection attachment(string $label = null) + * @method Grid\Column|Collection module_upload_dir(string $label = null) + * @method Grid\Column|Collection cloudid(string $label = null) + * @method Grid\Column|Collection module(string $label = null) + * @method Grid\Column|Collection lastruntime(string $label = null) + * @method Grid\Column|Collection nextruntime(string $label = null) + * @method Grid\Column|Collection weekday(string $label = null) + * @method Grid\Column|Collection hour(string $label = null) + * @method Grid\Column|Collection minute(string $label = null) + * @method Grid\Column|Collection extra(string $label = null) + * @method Grid\Column|Collection tid(string $label = null) + * @method Grid\Column|Collection handled(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_url(string $label = null) + * @method Grid\Column|Collection is_system(string $label = null) + * @method Grid\Column|Collection permission_name(string $label = null) + * @method Grid\Column|Collection modulename(string $label = null) + * @method Grid\Column|Collection position(string $label = null) + * @method Grid\Column|Collection plid(string $label = null) + * @method Grid\Column|Collection uniontid(string $label = null) + * @method Grid\Column|Collection fee(string $label = null) + * @method Grid\Column|Collection is_usecard(string $label = null) + * @method Grid\Column|Collection card_type(string $label = null) + * @method Grid\Column|Collection card_id(string $label = null) + * @method Grid\Column|Collection card_fee(string $label = null) + * @method Grid\Column|Collection encrypt_code(string $label = null) + * @method Grid\Column|Collection is_wish(string $label = null) + * @method Grid\Column|Collection runtime(string $label = null) + * @method Grid\Column|Collection runurl(string $label = null) + * @method Grid\Column|Collection runsql(string $label = null) + * @method Grid\Column|Collection qid(string $label = null) + * @method Grid\Column|Collection message(string $label = null) + * @method Grid\Column|Collection keyword(string $label = null) + * @method Grid\Column|Collection response(string $label = null) + * @method Grid\Column|Collection refund_uniontid(string $label = null) + * @method Grid\Column|Collection reason(string $label = null) + * @method Grid\Column|Collection media_id(string $label = null) + * @method Grid\Column|Collection trunk(string $label = null) + * @method Grid\Column|Collection result(string $label = null) + * @method Grid\Column|Collection sid(string $label = null) + * @method Grid\Column|Collection data(string $label = null) + * @method Grid\Column|Collection location_id(string $label = null) + * @method Grid\Column|Collection business_name(string $label = null) + * @method Grid\Column|Collection branch_name(string $label = null) + * @method Grid\Column|Collection district(string $label = null) + * @method Grid\Column|Collection longitude(string $label = null) + * @method Grid\Column|Collection latitude(string $label = null) + * @method Grid\Column|Collection telephone(string $label = null) + * @method Grid\Column|Collection photo_list(string $label = null) + * @method Grid\Column|Collection avg_price(string $label = null) + * @method Grid\Column|Collection open_time(string $label = null) + * @method Grid\Column|Collection recommend(string $label = null) + * @method Grid\Column|Collection special(string $label = null) + * @method Grid\Column|Collection offset_type(string $label = null) + * @method Grid\Column|Collection multiid(string $label = null) + * @method Grid\Column|Collection do(string $label = null) + * @method Grid\Column|Collection start1(string $label = null) + * @method Grid\Column|Collection end1(string $label = null) + * @method Grid\Column|Collection start2(string $label = null) + * @method Grid\Column|Collection end2(string $label = null) + * @method Grid\Column|Collection intro(string $label = null) + * @method Grid\Column|Collection difficulty(string $label = null) + * @method Grid\Column|Collection cooking_time(string $label = null) + * @method Grid\Column|Collection collection_num(string $label = null) + * @method Grid\Column|Collection delete_time(string $label = null) + * @method Grid\Column|Collection menu_id(string $label = null) + * @method Grid\Column|Collection ingredients_id(string $label = null) + * @method Grid\Column|Collection mediaid(string $label = null) + * @method Grid\Column|Collection clerk_id(string $label = null) + * @method Grid\Column|Collection clerk_type(string $label = null) + * @method Grid\Column|Collection final_fee(string $label = null) + * @method Grid\Column|Collection credit1(string $label = null) + * @method Grid\Column|Collection credit1_fee(string $label = null) + * @method Grid\Column|Collection credit2(string $label = null) + * @method Grid\Column|Collection cash(string $label = null) + * @method Grid\Column|Collection return_cash(string $label = null) + * @method Grid\Column|Collection final_cash(string $label = null) + * @method Grid\Column|Collection trade_type(string $label = null) + * @method Grid\Column|Collection msgtype(string $label = null) + * @method Grid\Column|Collection transid(string $label = null) + * @method Grid\Column|Collection backtype(string $label = null) + * @method Grid\Column|Collection credittype(string $label = null) + * @method Grid\Column|Collection operator(string $label = null) + * @method Grid\Column|Collection real_uniacid(string $label = null) + * @method Grid\Column|Collection groups(string $label = null) + * @method Grid\Column|Collection fanid(string $label = null) + * @method Grid\Column|Collection subscribe(string $label = null) + * @method Grid\Column|Collection language(string $label = null) + * @method Grid\Column|Collection headimgurl(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 tagid_list(string $label = null) + * @method Grid\Column|Collection subscribe_scene(string $label = null) + * @method Grid\Column|Collection qr_scene_str(string $label = null) + * @method Grid\Column|Collection qr_scene(string $label = null) + * @method Grid\Column|Collection tagid(string $label = null) + * @method Grid\Column|Collection credit(string $label = null) + * @method Grid\Column|Collection isdefault(string $label = null) + * @method Grid\Column|Collection touid(string $label = null) + * @method Grid\Column|Collection fromuid(string $label = null) + * @method Grid\Column|Collection action(string $label = null) + * @method Grid\Column|Collection credit_value(string $label = null) + * @method Grid\Column|Collection follow(string $label = null) + * @method Grid\Column|Collection followtime(string $label = null) + * @method Grid\Column|Collection unfollowtime(string $label = null) + * @method Grid\Column|Collection user_from(string $label = null) + * @method Grid\Column|Collection centeruid(string $label = null) + * @method Grid\Column|Collection groupname(string $label = null) + * @method Grid\Column|Collection fansnum(string $label = null) + * @method Grid\Column|Collection attach_id(string $label = null) + * @method Grid\Column|Collection cron_id(string $label = null) + * @method Grid\Column|Collection sendtime(string $label = null) + * @method Grid\Column|Collection finalsendtime(string $label = null) + * @method Grid\Column|Collection msg_id(string $label = null) + * @method Grid\Column|Collection msg_data_id(string $label = null) + * @method Grid\Column|Collection zipcode(string $label = null) + * @method Grid\Column|Collection fieldid(string $label = null) + * @method Grid\Column|Collection available(string $label = null) + * @method Grid\Column|Collection property(string $label = null) + * @method Grid\Column|Collection credit3(string $label = null) + * @method Grid\Column|Collection credit4(string $label = null) + * @method Grid\Column|Collection credit5(string $label = null) + * @method Grid\Column|Collection credit6(string $label = null) + * @method Grid\Column|Collection realname(string $label = null) + * @method Grid\Column|Collection vip(string $label = null) + * @method Grid\Column|Collection birthyear(string $label = null) + * @method Grid\Column|Collection birthmonth(string $label = null) + * @method Grid\Column|Collection constellation(string $label = null) + * @method Grid\Column|Collection zodiac(string $label = null) + * @method Grid\Column|Collection idcard(string $label = null) + * @method Grid\Column|Collection studentid(string $label = null) + * @method Grid\Column|Collection grade(string $label = null) + * @method Grid\Column|Collection nationality(string $label = null) + * @method Grid\Column|Collection resideprovince(string $label = null) + * @method Grid\Column|Collection residecity(string $label = null) + * @method Grid\Column|Collection residedist(string $label = null) + * @method Grid\Column|Collection graduateschool(string $label = null) + * @method Grid\Column|Collection company(string $label = null) + * @method Grid\Column|Collection education(string $label = null) + * @method Grid\Column|Collection occupation(string $label = null) + * @method Grid\Column|Collection revenue(string $label = null) + * @method Grid\Column|Collection affectivestatus(string $label = null) + * @method Grid\Column|Collection lookingfor(string $label = null) + * @method Grid\Column|Collection bloodtype(string $label = null) + * @method Grid\Column|Collection height(string $label = null) + * @method Grid\Column|Collection weight(string $label = null) + * @method Grid\Column|Collection alipay(string $label = null) + * @method Grid\Column|Collection msn(string $label = null) + * @method Grid\Column|Collection taobao(string $label = null) + * @method Grid\Column|Collection site(string $label = null) + * @method Grid\Column|Collection interest(string $label = null) + * @method Grid\Column|Collection pay_password(string $label = null) + * @method Grid\Column|Collection oauth_openid(string $label = null) + * @method Grid\Column|Collection picmd5(string $label = null) + * @method Grid\Column|Collection is_read(string $label = null) + * @method Grid\Column|Collection migration_name(string $label = null) + * @method Grid\Column|Collection breakpoint(string $label = null) + * @method Grid\Column|Collection enabled(string $label = null) + * @method Grid\Column|Collection ability(string $label = null) + * @method Grid\Column|Collection settings(string $label = null) + * @method Grid\Column|Collection subscribes(string $label = null) + * @method Grid\Column|Collection handles(string $label = null) + * @method Grid\Column|Collection isrulefields(string $label = null) + * @method Grid\Column|Collection issystem(string $label = null) + * @method Grid\Column|Collection target(string $label = null) + * @method Grid\Column|Collection iscard(string $label = null) + * @method Grid\Column|Collection title_initial(string $label = null) + * @method Grid\Column|Collection wxapp_support(string $label = null) + * @method Grid\Column|Collection welcome_support(string $label = null) + * @method Grid\Column|Collection oauth_type(string $label = null) + * @method Grid\Column|Collection webapp_support(string $label = null) + * @method Grid\Column|Collection phoneapp_support(string $label = null) + * @method Grid\Column|Collection account_support(string $label = null) + * @method Grid\Column|Collection xzapp_support(string $label = null) + * @method Grid\Column|Collection aliapp_support(string $label = null) + * @method Grid\Column|Collection baiduapp_support(string $label = null) + * @method Grid\Column|Collection toutiaoapp_support(string $label = null) + * @method Grid\Column|Collection from(string $label = null) + * @method Grid\Column|Collection cloud_record(string $label = null) + * @method Grid\Column|Collection eid(string $label = null) + * @method Grid\Column|Collection entry(string $label = null) + * @method Grid\Column|Collection direct(string $label = null) + * @method Grid\Column|Collection multilevel(string $label = null) + * @method Grid\Column|Collection parent(string $label = null) + * @method Grid\Column|Collection install_status(string $label = null) + * @method Grid\Column|Collection main_module_name(string $label = null) + * @method Grid\Column|Collection main_module_logo(string $label = null) + * @method Grid\Column|Collection has_new_version(string $label = null) + * @method Grid\Column|Collection has_new_branch(string $label = null) + * @method Grid\Column|Collection is_ban(string $label = null) + * @method Grid\Column|Collection lastupdatetime(string $label = null) + * @method Grid\Column|Collection cloud_id(string $label = null) + * @method Grid\Column|Collection buytime(string $label = null) + * @method Grid\Column|Collection module_status(string $label = null) + * @method Grid\Column|Collection main_module(string $label = null) + * @method Grid\Column|Collection rank(string $label = null) + * @method Grid\Column|Collection plugin_name(string $label = null) + * @method Grid\Column|Collection module_name(string $label = null) + * @method Grid\Column|Collection hqurl(string $label = null) + * @method Grid\Column|Collection parent_id(string $label = null) + * @method Grid\Column|Collection incontent(string $label = null) + * @method Grid\Column|Collection modules(string $label = null) + * @method Grid\Column|Collection required(string $label = null) + * @method Grid\Column|Collection unchangeable(string $label = null) + * @method Grid\Column|Collection showinregister(string $label = null) + * @method Grid\Column|Collection field_length(string $label = null) + * @method Grid\Column|Collection qrcid(string $label = null) + * @method Grid\Column|Collection scene_str(string $label = null) + * @method Grid\Column|Collection ticket(string $label = null) + * @method Grid\Column|Collection expire(string $label = null) + * @method Grid\Column|Collection subnum(string $label = null) + * @method Grid\Column|Collection containtype(string $label = null) + * @method Grid\Column|Collection kid(string $label = null) + * @method Grid\Column|Collection iscommend(string $label = null) + * @method Grid\Column|Collection ishot(string $label = null) + * @method Grid\Column|Collection pcate(string $label = null) + * @method Grid\Column|Collection ccate(string $label = null) + * @method Grid\Column|Collection template(string $label = null) + * @method Grid\Column|Collection linkurl(string $label = null) + * @method Grid\Column|Collection edittime(string $label = null) + * @method Grid\Column|Collection iscomment(string $label = null) + * @method Grid\Column|Collection nid(string $label = null) + * @method Grid\Column|Collection ishomepage(string $label = null) + * @method Grid\Column|Collection icontype(string $label = null) + * @method Grid\Column|Collection css(string $label = null) + * @method Grid\Column|Collection site_info(string $label = null) + * @method Grid\Column|Collection bindhost(string $label = null) + * @method Grid\Column|Collection section(string $label = null) + * @method Grid\Column|Collection categoryid(string $label = null) + * @method Grid\Column|Collection html(string $label = null) + * @method Grid\Column|Collection multipage(string $label = null) + * @method Grid\Column|Collection goodnum(string $label = null) + * @method Grid\Column|Collection founder_uid(string $label = null) + * @method Grid\Column|Collection amount(string $label = null) + * @method Grid\Column|Collection order_amount(string $label = null) + * @method Grid\Column|Collection cash_log_id(string $label = null) + * @method Grid\Column|Collection account_num(string $label = null) + * @method Grid\Column|Collection wxapp_num(string $label = null) + * @method Grid\Column|Collection unit(string $label = null) + * @method Grid\Column|Collection slide(string $label = null) + * @method Grid\Column|Collection synopsis(string $label = null) + * @method Grid\Column|Collection module_group(string $label = null) + * @method Grid\Column|Collection api_num(string $label = null) + * @method Grid\Column|Collection user_group_price(string $label = null) + * @method Grid\Column|Collection user_group(string $label = null) + * @method Grid\Column|Collection account_group(string $label = null) + * @method Grid\Column|Collection platform_num(string $label = null) + * @method Grid\Column|Collection aliapp_num(string $label = null) + * @method Grid\Column|Collection baiduapp_num(string $label = null) + * @method Grid\Column|Collection phoneapp_num(string $label = null) + * @method Grid\Column|Collection toutiaoapp_num(string $label = null) + * @method Grid\Column|Collection webapp_num(string $label = null) + * @method Grid\Column|Collection xzapp_num(string $label = null) + * @method Grid\Column|Collection wish_branch(string $label = null) + * @method Grid\Column|Collection is_edited(string $label = null) + * @method Grid\Column|Collection branchs(string $label = null) + * @method Grid\Column|Collection orderid(string $label = null) + * @method Grid\Column|Collection goodsid(string $label = null) + * @method Grid\Column|Collection duration(string $label = null) + * @method Grid\Column|Collection buyer(string $label = null) + * @method Grid\Column|Collection buyerid(string $label = null) + * @method Grid\Column|Collection changeprice(string $label = null) + * @method Grid\Column|Collection wxapp(string $label = null) + * @method Grid\Column|Collection templateid(string $label = null) + * @method Grid\Column|Collection variable(string $label = null) + * @method Grid\Column|Collection sections(string $label = null) + * @method Grid\Column|Collection new(string $label = null) + * @method Grid\Column|Collection cancel(string $label = null) + * @method Grid\Column|Collection cumulate(string $label = null) + * @method Grid\Column|Collection date(string $label = null) + * @method Grid\Column|Collection hit(string $label = null) + * @method Grid\Column|Collection count(string $label = null) + * @method Grid\Column|Collection ip_count(string $label = null) + * @method Grid\Column|Collection full_amount(string $label = null) + * @method Grid\Column|Collection discounts(string $label = null) + * @method Grid\Column|Collection is_new_user(string $label = null) + * @method Grid\Column|Collection inventory_use(string $label = null) + * @method Grid\Column|Collection storetype_id(string $label = null) + * @method Grid\Column|Collection active_type(string $label = null) + * @method Grid\Column|Collection usable_number(string $label = null) + * @method Grid\Column|Collection usable_start_time(string $label = null) + * @method Grid\Column|Collection usable_end_time(string $label = null) + * @method Grid\Column|Collection add_user_id(string $label = null) + * @method Grid\Column|Collection update_user_id(string $label = null) + * @method Grid\Column|Collection discount_type(string $label = null) + * @method Grid\Column|Collection system_coupon_user_id(string $label = null) + * @method Grid\Column|Collection receive_time(string $label = null) + * @method Grid\Column|Collection number_remain(string $label = null) + * @method Grid\Column|Collection receive_type(string $label = null) + * @method Grid\Column|Collection one_receive_number(string $label = null) + * @method Grid\Column|Collection user_receive_id(string $label = null) + * @method Grid\Column|Collection system_coupon_id(string $label = null) + * @method Grid\Column|Collection use_time(string $label = null) + * @method Grid\Column|Collection return_time(string $label = null) + * @method Grid\Column|Collection default_acid(string $label = null) + * @method Grid\Column|Collection menuid(string $label = null) + * @method Grid\Column|Collection client_platform_type(string $label = null) + * @method Grid\Column|Collection shortcut(string $label = null) + * @method Grid\Column|Collection version_id(string $label = null) + * @method Grid\Column|Collection owner_uid(string $label = null) + * @method Grid\Column|Collection templates(string $label = null) + * @method Grid\Column|Collection link_uniacid(string $label = null) + * @method Grid\Column|Collection passport(string $label = null) + * @method Grid\Column|Collection oauth(string $label = null) + * @method Grid\Column|Collection jsauth_acid(string $label = null) + * @method Grid\Column|Collection notify(string $label = null) + * @method Grid\Column|Collection creditnames(string $label = null) + * @method Grid\Column|Collection creditbehaviors(string $label = null) + * @method Grid\Column|Collection welcome(string $label = null) + * @method Grid\Column|Collection default(string $label = null) + * @method Grid\Column|Collection default_message(string $label = null) + * @method Grid\Column|Collection payment(string $label = null) + * @method Grid\Column|Collection stat(string $label = null) + * @method Grid\Column|Collection default_site(string $label = null) + * @method Grid\Column|Collection sync(string $label = null) + * @method Grid\Column|Collection recharge(string $label = null) + * @method Grid\Column|Collection tplnotice(string $label = null) + * @method Grid\Column|Collection grouplevel(string $label = null) + * @method Grid\Column|Collection mcplugin(string $label = null) + * @method Grid\Column|Collection exchange_enable(string $label = null) + * @method Grid\Column|Collection coupon_type(string $label = null) + * @method Grid\Column|Collection menuset(string $label = null) + * @method Grid\Column|Collection statistics(string $label = null) + * @method Grid\Column|Collection bind_domain(string $label = null) + * @method Grid\Column|Collection comment_status(string $label = null) + * @method Grid\Column|Collection reply_setting(string $label = null) + * @method Grid\Column|Collection default_module(string $label = null) + * @method Grid\Column|Collection attachment_limit(string $label = null) + * @method Grid\Column|Collection attachment_size(string $label = null) + * @method Grid\Column|Collection sync_member(string $label = null) + * @method Grid\Column|Collection remote(string $label = null) + * @method Grid\Column|Collection receiver(string $label = null) + * @method Grid\Column|Collection verifycode(string $label = null) + * @method Grid\Column|Collection failed_count(string $label = null) + * @method Grid\Column|Collection apiurl(string $label = null) + * @method Grid\Column|Collection default_text(string $label = null) + * @method Grid\Column|Collection cachetime(string $label = null) + * @method Grid\Column|Collection founder_groupid(string $label = null) + * @method Grid\Column|Collection joindate(string $label = null) + * @method Grid\Column|Collection starttime(string $label = null) + * @method Grid\Column|Collection register_type(string $label = null) + * @method Grid\Column|Collection welcome_link(string $label = null) + * @method Grid\Column|Collection notice_setting(string $label = null) + * @method Grid\Column|Collection is_bind(string $label = null) + * @method Grid\Column|Collection user_category(string $label = null) + * @method Grid\Column|Collection token_expire(string $label = null) + * @method Grid\Column|Collection bind_sign(string $label = null) + * @method Grid\Column|Collection third_type(string $label = null) + * @method Grid\Column|Collection third_nickname(string $label = null) + * @method Grid\Column|Collection maxaccount(string $label = null) + * @method Grid\Column|Collection maxwxapp(string $label = null) + * @method Grid\Column|Collection maxwebapp(string $label = null) + * @method Grid\Column|Collection maxphoneapp(string $label = null) + * @method Grid\Column|Collection maxxzapp(string $label = null) + * @method Grid\Column|Collection maxaliapp(string $label = null) + * @method Grid\Column|Collection maxbaiduapp(string $label = null) + * @method Grid\Column|Collection maxtoutiaoapp(string $label = null) + * @method Grid\Column|Collection uni_group_id(string $label = null) + * @method Grid\Column|Collection create_group_id(string $label = null) + * @method Grid\Column|Collection timelimit(string $label = null) + * @method Grid\Column|Collection package(string $label = null) + * @method Grid\Column|Collection users_group_id(string $label = null) + * @method Grid\Column|Collection inviteuid(string $label = null) + * @method Grid\Column|Collection login_at(string $label = null) + * @method Grid\Column|Collection fakeid(string $label = null) + * @method Grid\Column|Collection workerid(string $label = null) + * @method Grid\Column|Collection is_send_mobile_status(string $label = null) + * @method Grid\Column|Collection send_expire_status(string $label = null) + * @method Grid\Column|Collection width(string $label = null) + * @method Grid\Column|Collection thumb_media_id(string $label = null) + * @method Grid\Column|Collection thumb_url(string $label = null) + * @method Grid\Column|Collection digest(string $label = null) + * @method Grid\Column|Collection content_source_url(string $label = null) + * @method Grid\Column|Collection show_cover_pic(string $label = null) + * @method Grid\Column|Collection need_open_comment(string $label = null) + * @method Grid\Column|Collection only_fans_can_comment(string $label = null) + * @method Grid\Column|Collection session_cnt(string $label = null) + * @method Grid\Column|Collection visit_pv(string $label = null) + * @method Grid\Column|Collection visit_uv(string $label = null) + * @method Grid\Column|Collection visit_uv_new(string $label = null) + * @method Grid\Column|Collection stay_time_uv(string $label = null) + * @method Grid\Column|Collection stay_time_session(string $label = null) + * @method Grid\Column|Collection visit_depth(string $label = null) + * @method Grid\Column|Collection ref_date(string $label = null) + * @method Grid\Column|Collection design_method(string $label = null) + * @method Grid\Column|Collection quickmenu(string $label = null) + * @method Grid\Column|Collection entry_id(string $label = null) + * @method Grid\Column|Collection appjson(string $label = null) + * @method Grid\Column|Collection default_appjson(string $label = null) + * @method Grid\Column|Collection use_default(string $label = null) + * @method Grid\Column|Collection last_modules(string $label = null) + * @method Grid\Column|Collection tominiprogram(string $label = null) + * @method Grid\Column|Collection upload_time(string $label = null) + * @method Grid\Column|Collection cid(string $label = null) + * @method Grid\Column|Collection brand_name(string $label = null) + * @method Grid\Column|Collection logo_url(string $label = null) + * @method Grid\Column|Collection success(string $label = null) + * @method Grid\Column|Collection error(string $label = null) + * @method Grid\Column|Collection c_attitude(string $label = null) + * @method Grid\Column|Collection c_service(string $label = null) + * @method Grid\Column|Collection c_quality(string $label = null) + * @method Grid\Column|Collection c_average(string $label = null) + * @method Grid\Column|Collection service_personnel_id(string $label = null) + * @method Grid\Column|Collection user_created_at(string $label = null) + * @method Grid\Column|Collection qr_url(string $label = null) + * @method Grid\Column|Collection head_url(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 order(string $label = null) + * @method Grid\Column|Collection uri(string $label = null) + * @method Grid\Column|Collection permission_id(string $label = null) + * @method Grid\Column|Collection http_method(string $label = null) + * @method Grid\Column|Collection http_path(string $label = null) + * @method Grid\Column|Collection role_id(string $label = null) + * @method Grid\Column|Collection remember_token(string $label = null) + * @method Grid\Column|Collection migration(string $label = null) + * @method Grid\Column|Collection batch(string $label = null) + * @method Grid\Column|Collection email_verified_at(string $label = null) + */ + class Grid {} + + class MiniGrid extends Grid {} + + /** + * @property Show\Field|Collection id + * @property Show\Field|Collection username + * @property Show\Field|Collection name + * @property Show\Field|Collection roles + * @property Show\Field|Collection permissions + * @property Show\Field|Collection created_at + * @property Show\Field|Collection updated_at + * @property Show\Field|Collection avatar + * @property Show\Field|Collection user + * @property Show\Field|Collection method + * @property Show\Field|Collection path + * @property Show\Field|Collection ip + * @property Show\Field|Collection input + * @property Show\Field|Collection slug + * @property Show\Field|Collection version + * @property Show\Field|Collection alias + * @property Show\Field|Collection authors + * @property Show\Field|Collection enable + * @property Show\Field|Collection imported + * @property Show\Field|Collection config + * @property Show\Field|Collection require + * @property Show\Field|Collection require_dev + * @property Show\Field|Collection robot_nickname + * @property Show\Field|Collection is_use + * @property Show\Field|Collection nickname + * @property Show\Field|Collection password + * @property Show\Field|Collection salt + * @property Show\Field|Collection email + * @property Show\Field|Collection loginfailure + * @property Show\Field|Collection logintime + * @property Show\Field|Collection loginip + * @property Show\Field|Collection createtime + * @property Show\Field|Collection updatetime + * @property Show\Field|Collection token + * @property Show\Field|Collection status + * @property Show\Field|Collection market_id + * @property Show\Field|Collection admin_id + * @property Show\Field|Collection url + * @property Show\Field|Collection content + * @property Show\Field|Collection useragent + * @property Show\Field|Collection pid + * @property Show\Field|Collection shortname + * @property Show\Field|Collection mergename + * @property Show\Field|Collection level + * @property Show\Field|Collection pinyin + * @property Show\Field|Collection code + * @property Show\Field|Collection zip + * @property Show\Field|Collection first + * @property Show\Field|Collection lng + * @property Show\Field|Collection lat + * @property Show\Field|Collection user_id + * @property Show\Field|Collection imagewidth + * @property Show\Field|Collection imageheight + * @property Show\Field|Collection imagetype + * @property Show\Field|Collection imageframes + * @property Show\Field|Collection filesize + * @property Show\Field|Collection mimetype + * @property Show\Field|Collection extparam + * @property Show\Field|Collection uploadtime + * @property Show\Field|Collection storage + * @property Show\Field|Collection sha1 + * @property Show\Field|Collection rules + * @property Show\Field|Collection uid + * @property Show\Field|Collection group_id + * @property Show\Field|Collection type + * @property Show\Field|Collection icon + * @property Show\Field|Collection condition + * @property Show\Field|Collection remark + * @property Show\Field|Collection ismenu + * @property Show\Field|Collection weigh + * @property Show\Field|Collection flag + * @property Show\Field|Collection image + * @property Show\Field|Collection keywords + * @property Show\Field|Collection diyname + * @property Show\Field|Collection params + * @property Show\Field|Collection command + * @property Show\Field|Collection executetime + * @property Show\Field|Collection group + * @property Show\Field|Collection tip + * @property Show\Field|Collection value + * @property Show\Field|Collection rule + * @property Show\Field|Collection extend + * @property Show\Field|Collection event + * @property Show\Field|Collection times + * @property Show\Field|Collection mobile + * @property Show\Field|Collection category_id + * @property Show\Field|Collection category_ids + * @property Show\Field|Collection week + * @property Show\Field|Collection genderdata + * @property Show\Field|Collection hobbydata + * @property Show\Field|Collection images + * @property Show\Field|Collection attachfile + * @property Show\Field|Collection city + * @property Show\Field|Collection json + * @property Show\Field|Collection price + * @property Show\Field|Collection views + * @property Show\Field|Collection startdate + * @property Show\Field|Collection activitytime + * @property Show\Field|Collection year + * @property Show\Field|Collection refreshtime + * @property Show\Field|Collection deletetime + * @property Show\Field|Collection switch + * @property Show\Field|Collection state + * @property Show\Field|Collection gender + * @property Show\Field|Collection birthday + * @property Show\Field|Collection bio + * @property Show\Field|Collection money + * @property Show\Field|Collection score + * @property Show\Field|Collection successions + * @property Show\Field|Collection maxsuccessions + * @property Show\Field|Collection prevtime + * @property Show\Field|Collection joinip + * @property Show\Field|Collection jointime + * @property Show\Field|Collection verification + * @property Show\Field|Collection before + * @property Show\Field|Collection after + * @property Show\Field|Collection memo + * @property Show\Field|Collection expiretime + * @property Show\Field|Collection oldversion + * @property Show\Field|Collection newversion + * @property Show\Field|Collection packagesize + * @property Show\Field|Collection downloadurl + * @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 uniacid + * @property Show\Field|Collection hash + * @property Show\Field|Collection isconnect + * @property Show\Field|Collection isdeleted + * @property Show\Field|Collection endtime + * @property Show\Field|Collection send_account_expire_status + * @property Show\Field|Collection send_api_expire_status + * @property Show\Field|Collection key + * @property Show\Field|Collection appid + * @property Show\Field|Collection secret + * @property Show\Field|Collection encodingaeskey + * @property Show\Field|Collection account + * @property Show\Field|Collection original + * @property Show\Field|Collection signature + * @property Show\Field|Collection country + * @property Show\Field|Collection province + * @property Show\Field|Collection lastupdate + * @property Show\Field|Collection styleid + * @property Show\Field|Collection subscribeurl + * @property Show\Field|Collection auth_refresh_token + * @property Show\Field|Collection appdomain + * @property Show\Field|Collection xzapp_id + * @property Show\Field|Collection displayorder + * @property Show\Field|Collection group_name + * @property Show\Field|Collection permission + * @property Show\Field|Collection system + * @property Show\Field|Collection storeid + * @property Show\Field|Collection openid + * @property Show\Field|Collection articleid + * @property Show\Field|Collection parentid + * @property Show\Field|Collection is_like + * @property Show\Field|Collection is_reply + * @property Show\Field|Collection like_num + * @property Show\Field|Collection cateid + * @property Show\Field|Collection thumb + * @property Show\Field|Collection source + * @property Show\Field|Collection author + * @property Show\Field|Collection is_display + * @property Show\Field|Collection is_show_home + * @property Show\Field|Collection click + * @property Show\Field|Collection style + * @property Show\Field|Collection notice_id + * @property Show\Field|Collection is_new + * @property Show\Field|Collection rid + * @property Show\Field|Collection weid + * @property Show\Field|Collection phone + * @property Show\Field|Collection qq + * @property Show\Field|Collection dist + * @property Show\Field|Collection address + * @property Show\Field|Collection industry1 + * @property Show\Field|Collection industry2 + * @property Show\Field|Collection from_user + * @property Show\Field|Collection accountname + * @property Show\Field|Collection pwd + * @property Show\Field|Collection pay_account + * @property Show\Field|Collection dateline + * @property Show\Field|Collection role + * @property Show\Field|Collection lastvisit + * @property Show\Field|Collection lastip + * @property Show\Field|Collection areaid + * @property Show\Field|Collection is_admin_order + * @property Show\Field|Collection is_notice_order + * @property Show\Field|Collection is_notice_queue + * @property Show\Field|Collection is_notice_service + * @property Show\Field|Collection is_notice_boss + * @property Show\Field|Collection authority + * @property Show\Field|Collection logo + * @property Show\Field|Collection src + * @property Show\Field|Collection src2 + * @property Show\Field|Collection created_time + * @property Show\Field|Collection orderby + * @property Show\Field|Collection xcx_name + * @property Show\Field|Collection item + * @property Show\Field|Collection area_name + * @property Show\Field|Collection num + * @property Show\Field|Collection store_id + * @property Show\Field|Collection img + * @property Show\Field|Collection stars + * @property Show\Field|Collection time + * @property Show\Field|Collection order_id + * @property Show\Field|Collection hf + * @property Show\Field|Collection hf_time + * @property Show\Field|Collection is_open + * @property Show\Field|Collection apikey + * @property Show\Field|Collection table_id + * @property Show\Field|Collection sh_time + * @property Show\Field|Collection user_name + * @property Show\Field|Collection tx_cost + * @property Show\Field|Collection sj_cost + * @property Show\Field|Collection day + * @property Show\Field|Collection integral + * @property Show\Field|Collection start_time + * @property Show\Field|Collection end_time + * @property Show\Field|Collection full + * @property Show\Field|Collection reduce + * @property Show\Field|Collection stock + * @property Show\Field|Collection instruction + * @property Show\Field|Collection type_id + * @property Show\Field|Collection is_hy + * @property Show\Field|Collection is_tjhb + * @property Show\Field|Collection yhq_set + * @property Show\Field|Collection time2 + * @property Show\Field|Collection details + * @property Show\Field|Collection reduction + * @property Show\Field|Collection money2 + * @property Show\Field|Collection form_id + * @property Show\Field|Collection start + * @property Show\Field|Collection end + * @property Show\Field|Collection tag_id + * @property Show\Field|Collection dyj_title + * @property Show\Field|Collection dyj_id + * @property Show\Field|Collection dyj_key + * @property Show\Field|Collection api + * @property Show\Field|Collection mid + * @property Show\Field|Collection location + * @property Show\Field|Collection yy_id + * @property Show\Field|Collection fezh + * @property Show\Field|Collection fe_ukey + * @property Show\Field|Collection fe_dycode + * @property Show\Field|Collection xx_sn + * @property Show\Field|Collection tag_name + * @property Show\Field|Collection sort + * @property Show\Field|Collection son_id + * @property Show\Field|Collection note + * @property Show\Field|Collection sn + * @property Show\Field|Collection simnum + * @property Show\Field|Collection addtime + * @property Show\Field|Collection fx_details + * @property Show\Field|Collection tx_details + * @property Show\Field|Collection is_fx + * @property Show\Field|Collection is_ej + * @property Show\Field|Collection is_type + * @property Show\Field|Collection tx_rate + * @property Show\Field|Collection dn_yj + * @property Show\Field|Collection dn_ej + * @property Show\Field|Collection wm_yj + * @property Show\Field|Collection wm_ej + * @property Show\Field|Collection tx_money + * @property Show\Field|Collection img2 + * @property Show\Field|Collection instructions + * @property Show\Field|Collection fx_name + * @property Show\Field|Collection is_check + * @property Show\Field|Collection xx_name + * @property Show\Field|Collection fx_user + * @property Show\Field|Collection label_id + * @property Show\Field|Collection vip_money + * @property Show\Field|Collection dn_money + * @property Show\Field|Collection is_show + * @property Show\Field|Collection inventory + * @property Show\Field|Collection sales + * @property Show\Field|Collection is_gg + * @property Show\Field|Collection is_hot + * @property Show\Field|Collection is_zp + * @property Show\Field|Collection quantity + * @property Show\Field|Collection box_money + * @property Show\Field|Collection is_tj + * @property Show\Field|Collection restrict_num + * @property Show\Field|Collection start_num + * @property Show\Field|Collection dn_hymoney + * @property Show\Field|Collection is_max + * @property Show\Field|Collection good_unit + * @property Show\Field|Collection goods_id + * @property Show\Field|Collection goods_logo + * @property Show\Field|Collection goods_name + * @property Show\Field|Collection kt_num + * @property Show\Field|Collection yg_num + * @property Show\Field|Collection kt_time + * @property Show\Field|Collection dq_time + * @property Show\Field|Collection pt_price + * @property Show\Field|Collection y_price + * @property Show\Field|Collection dd_price + * @property Show\Field|Collection ycd_num + * @property Show\Field|Collection ysc_num + * @property Show\Field|Collection people + * @property Show\Field|Collection xf_time + * @property Show\Field|Collection is_shelves + * @property Show\Field|Collection display + * @property Show\Field|Collection introduction + * @property Show\Field|Collection hx_id + * @property Show\Field|Collection order_num + * @property Show\Field|Collection goods_type + * @property Show\Field|Collection goods_num + * @property Show\Field|Collection pay_type + * @property Show\Field|Collection receive_name + * @property Show\Field|Collection receive_tel + * @property Show\Field|Collection receive_address + * @property Show\Field|Collection pay_time + * @property Show\Field|Collection cz_time + * @property Show\Field|Collection question + * @property Show\Field|Collection answer + * @property Show\Field|Collection month + * @property Show\Field|Collection user_tel + * @property Show\Field|Collection days + * @property Show\Field|Collection cerated_time + * @property Show\Field|Collection goods_details + * @property Show\Field|Collection process_details + * @property Show\Field|Collection attention_details + * @property Show\Field|Collection hb_moeny + * @property Show\Field|Collection good_id + * @property Show\Field|Collection good_name + * @property Show\Field|Collection good_img + * @property Show\Field|Collection access_token + * @property Show\Field|Collection cityname + * @property Show\Field|Collection bindto_id + * @property Show\Field|Collection is_waimai_order_speak + * @property Show\Field|Collection is_dangmian_order_speak + * @property Show\Field|Collection is_ziti_order_speak + * @property Show\Field|Collection is_waimai_pay_speak + * @property Show\Field|Collection is_dangmian_pay_speak + * @property Show\Field|Collection is_ziti_pay_speak + * @property Show\Field|Collection waimai_order_temp + * @property Show\Field|Collection dangmian_order_temp + * @property Show\Field|Collection ziti_order_temp + * @property Show\Field|Collection waimai_pay_temp + * @property Show\Field|Collection dangmian_pay_temp + * @property Show\Field|Collection ziti_pay_temp + * @property Show\Field|Collection introduce + * @property Show\Field|Collection imgs + * @property Show\Field|Collection coordinates + * @property Show\Field|Collection poundage + * @property Show\Field|Collection dn_poundage + * @property Show\Field|Collection dm_poundage + * @property Show\Field|Collection yd_poundage + * @property Show\Field|Collection dada_number + * @property Show\Field|Collection is_open_dada + * @property Show\Field|Collection loudspeaker_imei + * @property Show\Field|Collection dishes_menu_intro + * @property Show\Field|Collection create_time + * @property Show\Field|Collection sender + * @property Show\Field|Collection is_email + * @property Show\Field|Collection xd_tid + * @property Show\Field|Collection jd_tid + * @property Show\Field|Collection yy_tid + * @property Show\Field|Collection dm_tid + * @property Show\Field|Collection sj_tid + * @property Show\Field|Collection sj_tid2 + * @property Show\Field|Collection wx_appid + * @property Show\Field|Collection wx_secret + * @property Show\Field|Collection is_dxyz + * @property Show\Field|Collection appkey + * @property Show\Field|Collection tpl_id + * @property Show\Field|Collection jj_tid + * @property Show\Field|Collection tk_tid + * @property Show\Field|Collection rzsh_tid + * @property Show\Field|Collection rzcg_tid + * @property Show\Field|Collection rzjj_tid + * @property Show\Field|Collection cz_tid + * @property Show\Field|Collection xdd_tid + * @property Show\Field|Collection xdd_tid2 + * @property Show\Field|Collection qf_tid + * @property Show\Field|Collection qh_tid + * @property Show\Field|Collection tx_appkey + * @property Show\Field|Collection template_id + * @property Show\Field|Collection sign + * @property Show\Field|Collection sjyy_tid + * @property Show\Field|Collection shtk_tid + * @property Show\Field|Collection aliyun_appkey + * @property Show\Field|Collection aliyun_appsecret + * @property Show\Field|Collection aliyun_sign + * @property Show\Field|Collection aliyun_id + * @property Show\Field|Collection group_tid + * @property Show\Field|Collection rush_tid + * @property Show\Field|Collection wechat_appId + * @property Show\Field|Collection wechat_appsecret + * @property Show\Field|Collection wechat_wm_tid + * @property Show\Field|Collection fs_time + * @property Show\Field|Collection title_color + * @property Show\Field|Collection title_color2 + * @property Show\Field|Collection logo2 + * @property Show\Field|Collection typename + * @property Show\Field|Collection order_main_id + * @property Show\Field|Collection jd_time + * @property Show\Field|Collection cancel_time + * @property Show\Field|Collection complete_time + * @property Show\Field|Collection ps_money + * @property Show\Field|Collection mj_money + * @property Show\Field|Collection xyh_money + * @property Show\Field|Collection tel + * @property Show\Field|Collection jj_note + * @property Show\Field|Collection area + * @property Show\Field|Collection del + * @property Show\Field|Collection form_id2 + * @property Show\Field|Collection order_type + * @property Show\Field|Collection delivery_time + * @property Show\Field|Collection sex + * @property Show\Field|Collection discount + * @property Show\Field|Collection tableware + * @property Show\Field|Collection dd_info + * @property Show\Field|Collection yhq_money + * @property Show\Field|Collection coupon_id + * @property Show\Field|Collection yhq_money2 + * @property Show\Field|Collection coupon_id2 + * @property Show\Field|Collection dn_state + * @property Show\Field|Collection dm_state + * @property Show\Field|Collection yy_state + * @property Show\Field|Collection deposit + * @property Show\Field|Collection ship_id + * @property Show\Field|Collection zk_money + * @property Show\Field|Collection is_dd + * @property Show\Field|Collection pt_info + * @property Show\Field|Collection kfw_info + * @property Show\Field|Collection hb_type + * @property Show\Field|Collection original_money + * @property Show\Field|Collection oid + * @property Show\Field|Collection sss_peisong_id + * @property Show\Field|Collection time_add + * @property Show\Field|Collection time_create + * @property Show\Field|Collection dishes_id + * @property Show\Field|Collection spec + * @property Show\Field|Collection is_jc + * @property Show\Field|Collection is_qg + * @property Show\Field|Collection combination_id + * @property Show\Field|Collection order_status + * @property Show\Field|Collection update_time + * @property Show\Field|Collection order_shipping_code + * @property Show\Field|Collection shipping_name + * @property Show\Field|Collection store_ids + * @property Show\Field|Collection delivery_no + * @property Show\Field|Collection dada_fee + * @property Show\Field|Collection time_delivery + * @property Show\Field|Collection time_pay + * @property Show\Field|Collection total_money + * @property Show\Field|Collection dada_status + * @property Show\Field|Collection print_num + * @property Show\Field|Collection mchid + * @property Show\Field|Collection wxkey + * @property Show\Field|Collection apiclient_cert + * @property Show\Field|Collection apiclient_key + * @property Show\Field|Collection jf_proportion + * @property Show\Field|Collection integral2 + * @property Show\Field|Collection source_id + * @property Show\Field|Collection shop_no + * @property Show\Field|Collection surplus + * @property Show\Field|Collection consumption_time + * @property Show\Field|Collection hot + * @property Show\Field|Collection state2 + * @property Show\Field|Collection qg_num + * @property Show\Field|Collection good_logo + * @property Show\Field|Collection hx_time + * @property Show\Field|Collection label + * @property Show\Field|Collection cjwt + * @property Show\Field|Collection rzxy + * @property Show\Field|Collection is_ruzhu + * @property Show\Field|Collection is_img + * @property Show\Field|Collection dr_id + * @property Show\Field|Collection qg_name + * @property Show\Field|Collection qg_logo + * @property Show\Field|Collection time3 + * @property Show\Field|Collection one + * @property Show\Field|Collection is_bq + * @property Show\Field|Collection bq_integral + * @property Show\Field|Collection qd_img + * @property Show\Field|Collection wm_tid + * @property Show\Field|Collection dn_tid + * @property Show\Field|Collection is_wm + * @property Show\Field|Collection is_dn + * @property Show\Field|Collection is_yy + * @property Show\Field|Collection is_tk + * @property Show\Field|Collection openId + * @property Show\Field|Collection wm_money + * @property Show\Field|Collection combination + * @property Show\Field|Collection spec_id + * @property Show\Field|Collection color + * @property Show\Field|Collection sss_shop_id + * @property Show\Field|Collection sss_shop_token + * @property Show\Field|Collection time4 + * @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 md_area + * @property Show\Field|Collection md_type + * @property Show\Field|Collection capita + * @property Show\Field|Collection tx_user + * @property Show\Field|Collection environment + * @property Show\Field|Collection is_brand + * @property Show\Field|Collection rz_time + * @property Show\Field|Collection rzdq_time + * @property Show\Field|Collection sq_id + * @property Show\Field|Collection zm_img + * @property Show\Field|Collection fm_img + * @property Show\Field|Collection zf_state + * @property Show\Field|Collection link_name + * @property Show\Field|Collection link_tel + * @property Show\Field|Collection sq_time + * @property Show\Field|Collection is_mp3 + * @property Show\Field|Collection is_video + * @property Show\Field|Collection store_mp3 + * @property Show\Field|Collection store_video + * @property Show\Field|Collection ps_poundage + * @property Show\Field|Collection qrcode + * @property Show\Field|Collection is_select + * @property Show\Field|Collection store_mchid + * @property Show\Field|Collection cash_code + * @property Show\Field|Collection store_wallet + * @property Show\Field|Collection award_money + * @property Show\Field|Collection add_time + * @property Show\Field|Collection category + * @property Show\Field|Collection xyh_open + * @property Show\Field|Collection is_jd + * @property Show\Field|Collection is_jfpay + * @property Show\Field|Collection is_yuepay + * @property Show\Field|Collection is_yuejf + * @property Show\Field|Collection is_wxpay + * @property Show\Field|Collection is_pj + * @property Show\Field|Collection is_chzf + * @property Show\Field|Collection box_name + * @property Show\Field|Collection yhq_name + * @property Show\Field|Collection sy_name + * @property Show\Field|Collection dn_name + * @property Show\Field|Collection wm_name + * @property Show\Field|Collection yy_name + * @property Show\Field|Collection yhq_img + * @property Show\Field|Collection sy_img + * @property Show\Field|Collection dn_img + * @property Show\Field|Collection wm_img + * @property Show\Field|Collection yy_img + * @property Show\Field|Collection is_yhq + * @property Show\Field|Collection is_sy + * @property Show\Field|Collection ps_time + * @property Show\Field|Collection ps_mode + * @property Show\Field|Collection ps_jl + * @property Show\Field|Collection is_zt + * @property Show\Field|Collection is_hdfk + * @property Show\Field|Collection print_type + * @property Show\Field|Collection ztxy + * @property Show\Field|Collection top_style + * @property Show\Field|Collection info_style + * @property Show\Field|Collection yysm + * @property Show\Field|Collection wmsm + * @property Show\Field|Collection dnsm + * @property Show\Field|Collection sysm + * @property Show\Field|Collection is_wxzf + * @property Show\Field|Collection print_mode + * @property Show\Field|Collection is_yydc + * @property Show\Field|Collection is_ps + * @property Show\Field|Collection is_ps + * @property Show\Field|Collection is_cj + * @property Show\Field|Collection cj_name + * @property Show\Field|Collection wmps_name + * @property Show\Field|Collection is_czztpd + * @property Show\Field|Collection is_dcyhq + * @property Show\Field|Collection is_pt + * @property Show\Field|Collection pt_name + * @property Show\Field|Collection ptsm + * @property Show\Field|Collection pt_img + * @property Show\Field|Collection qgsm + * @property Show\Field|Collection qg_img + * @property Show\Field|Collection is_ydtime + * @property Show\Field|Collection is_yyzw + * @property Show\Field|Collection pd_name + * @property Show\Field|Collection pdsm + * @property Show\Field|Collection pd_img + * @property Show\Field|Collection is_pd + * @property Show\Field|Collection tz_src + * @property Show\Field|Collection full_delivery + * @property Show\Field|Collection is_poundage + * @property Show\Field|Collection type_name + * @property Show\Field|Collection appsecret + * @property Show\Field|Collection url_name + * @property Show\Field|Collection url_logo + * @property Show\Field|Collection link_logo + * @property Show\Field|Collection default_store + * @property Show\Field|Collection support + * @property Show\Field|Collection bq_logo + * @property Show\Field|Collection bq_name + * @property Show\Field|Collection map_key + * @property Show\Field|Collection tz_appid + * @property Show\Field|Collection tz_name + * @property Show\Field|Collection dada_key + * @property Show\Field|Collection dada_secret + * @property Show\Field|Collection is_psxx + * @property Show\Field|Collection jfgn + * @property Show\Field|Collection msgn + * @property Show\Field|Collection fxgn + * @property Show\Field|Collection typeset + * @property Show\Field|Collection dc_name + * @property Show\Field|Collection yd_name + * @property Show\Field|Collection gs_img + * @property Show\Field|Collection gs_details + * @property Show\Field|Collection gs_tel + * @property Show\Field|Collection gs_time + * @property Show\Field|Collection gs_add + * @property Show\Field|Collection gs_zb + * @property Show\Field|Collection kfw_appid + * @property Show\Field|Collection kfw_appsecret + * @property Show\Field|Collection fl_more + * @property Show\Field|Collection tx_is_open_check + * @property Show\Field|Collection tx_max_money + * @property Show\Field|Collection tx_zdmoney + * @property Show\Field|Collection tx_notice + * @property Show\Field|Collection is_mdrz + * @property Show\Field|Collection md_sh + * @property Show\Field|Collection md_sf + * @property Show\Field|Collection rz_details + * @property Show\Field|Collection rz_title + * @property Show\Field|Collection rz_ms + * @property Show\Field|Collection countdown + * @property Show\Field|Collection distance + * @property Show\Field|Collection is_jf + * @property Show\Field|Collection fx_title + * @property Show\Field|Collection fx_title + * @property Show\Field|Collection hygn + * @property Show\Field|Collection hy_discount + * @property Show\Field|Collection hy_details + * @property Show\Field|Collection kt_details + * @property Show\Field|Collection cz_notice + * @property Show\Field|Collection is_cz + * @property Show\Field|Collection hy_note + * @property Show\Field|Collection ps_name + * @property Show\Field|Collection is_tzms + * @property Show\Field|Collection is_wx + * @property Show\Field|Collection is_yhk + * @property Show\Field|Collection is_sj + * @property Show\Field|Collection is_dada + * @property Show\Field|Collection is_kfw + * @property Show\Field|Collection ptgn + * @property Show\Field|Collection qggn + * @property Show\Field|Collection is_zb + * @property Show\Field|Collection isyykg + * @property Show\Field|Collection zb_img + * @property Show\Field|Collection is_pay + * @property Show\Field|Collection pay_money + * @property Show\Field|Collection is_vip_delivery + * @property Show\Field|Collection is_tel + * @property Show\Field|Collection is_sss + * @property Show\Field|Collection sss_appkey + * @property Show\Field|Collection sss_secret + * @property Show\Field|Collection is_open_dada_fee + * @property Show\Field|Collection menu_name + * @property Show\Field|Collection info + * @property Show\Field|Collection desc + * @property Show\Field|Collection tag + * @property Show\Field|Collection fw_cost + * @property Show\Field|Collection zd_cost + * @property Show\Field|Collection yd_cost + * @property Show\Field|Collection order_by + * @property Show\Field|Collection join_time + * @property Show\Field|Collection total_score + * @property Show\Field|Collection wallet + * @property Show\Field|Collection commission + * @property Show\Field|Collection order_money + * @property Show\Field|Collection order_number + * @property Show\Field|Collection hy_day + * @property Show\Field|Collection is_default + * @property Show\Field|Collection yhk_num + * @property Show\Field|Collection yh_info + * @property Show\Field|Collection pt_uniacid + * @property Show\Field|Collection cy_uniacid + * @property Show\Field|Collection goods_info + * @property Show\Field|Collection goods_price + * @property Show\Field|Collection sender_name + * @property Show\Field|Collection sender_address + * @property Show\Field|Collection sender_tel + * @property Show\Field|Collection sender_lat + * @property Show\Field|Collection sender_lng + * @property Show\Field|Collection receiver_name + * @property Show\Field|Collection receiver_address + * @property Show\Field|Collection receiver_tel + * @property Show\Field|Collection receiver_lat + * @property Show\Field|Collection receiver_lng + * @property Show\Field|Collection ps_num + * @property Show\Field|Collection qs_id + * @property Show\Field|Collection dd_time + * @property Show\Field|Collection wc_time + * @property Show\Field|Collection store_logo + * @property Show\Field|Collection yh_money + * @property Show\Field|Collection origin_id + * @property Show\Field|Collection body + * @property Show\Field|Collection appId + * @property Show\Field|Collection appSecret + * @property Show\Field|Collection jdId + * @property Show\Field|Collection pdId + * @property Show\Field|Collection weChatId + * @property Show\Field|Collection client_ip + * @property Show\Field|Collection bj_logo + * @property Show\Field|Collection tpl_id2 + * @property Show\Field|Collection tpl_id3 + * @property Show\Field|Collection tpl_id4 + * @property Show\Field|Collection tx_sxf + * @property Show\Field|Collection db_logo + * @property Show\Field|Collection db_content + * @property Show\Field|Collection yc_money + * @property Show\Field|Collection aliyun_id2 + * @property Show\Field|Collection aliyun_id3 + * @property Show\Field|Collection aliyun_id4 + * @property Show\Field|Collection tx_num + * @property Show\Field|Collection filename + * @property Show\Field|Collection attachment + * @property Show\Field|Collection module_upload_dir + * @property Show\Field|Collection cloudid + * @property Show\Field|Collection module + * @property Show\Field|Collection lastruntime + * @property Show\Field|Collection nextruntime + * @property Show\Field|Collection weekday + * @property Show\Field|Collection hour + * @property Show\Field|Collection minute + * @property Show\Field|Collection extra + * @property Show\Field|Collection tid + * @property Show\Field|Collection handled + * @property Show\Field|Collection total + * @property Show\Field|Collection append_title + * @property Show\Field|Collection append_url + * @property Show\Field|Collection is_system + * @property Show\Field|Collection permission_name + * @property Show\Field|Collection modulename + * @property Show\Field|Collection position + * @property Show\Field|Collection plid + * @property Show\Field|Collection uniontid + * @property Show\Field|Collection fee + * @property Show\Field|Collection is_usecard + * @property Show\Field|Collection card_type + * @property Show\Field|Collection card_id + * @property Show\Field|Collection card_fee + * @property Show\Field|Collection encrypt_code + * @property Show\Field|Collection is_wish + * @property Show\Field|Collection runtime + * @property Show\Field|Collection runurl + * @property Show\Field|Collection runsql + * @property Show\Field|Collection qid + * @property Show\Field|Collection message + * @property Show\Field|Collection keyword + * @property Show\Field|Collection response + * @property Show\Field|Collection refund_uniontid + * @property Show\Field|Collection reason + * @property Show\Field|Collection media_id + * @property Show\Field|Collection trunk + * @property Show\Field|Collection result + * @property Show\Field|Collection sid + * @property Show\Field|Collection data + * @property Show\Field|Collection location_id + * @property Show\Field|Collection business_name + * @property Show\Field|Collection branch_name + * @property Show\Field|Collection district + * @property Show\Field|Collection longitude + * @property Show\Field|Collection latitude + * @property Show\Field|Collection telephone + * @property Show\Field|Collection photo_list + * @property Show\Field|Collection avg_price + * @property Show\Field|Collection open_time + * @property Show\Field|Collection recommend + * @property Show\Field|Collection special + * @property Show\Field|Collection offset_type + * @property Show\Field|Collection multiid + * @property Show\Field|Collection do + * @property Show\Field|Collection start1 + * @property Show\Field|Collection end1 + * @property Show\Field|Collection start2 + * @property Show\Field|Collection end2 + * @property Show\Field|Collection intro + * @property Show\Field|Collection difficulty + * @property Show\Field|Collection cooking_time + * @property Show\Field|Collection collection_num + * @property Show\Field|Collection delete_time + * @property Show\Field|Collection menu_id + * @property Show\Field|Collection ingredients_id + * @property Show\Field|Collection mediaid + * @property Show\Field|Collection clerk_id + * @property Show\Field|Collection clerk_type + * @property Show\Field|Collection final_fee + * @property Show\Field|Collection credit1 + * @property Show\Field|Collection credit1_fee + * @property Show\Field|Collection credit2 + * @property Show\Field|Collection cash + * @property Show\Field|Collection return_cash + * @property Show\Field|Collection final_cash + * @property Show\Field|Collection trade_type + * @property Show\Field|Collection msgtype + * @property Show\Field|Collection transid + * @property Show\Field|Collection backtype + * @property Show\Field|Collection credittype + * @property Show\Field|Collection operator + * @property Show\Field|Collection real_uniacid + * @property Show\Field|Collection groups + * @property Show\Field|Collection fanid + * @property Show\Field|Collection subscribe + * @property Show\Field|Collection language + * @property Show\Field|Collection headimgurl + * @property Show\Field|Collection subscribe_time + * @property Show\Field|Collection unionid + * @property Show\Field|Collection groupid + * @property Show\Field|Collection tagid_list + * @property Show\Field|Collection subscribe_scene + * @property Show\Field|Collection qr_scene_str + * @property Show\Field|Collection qr_scene + * @property Show\Field|Collection tagid + * @property Show\Field|Collection credit + * @property Show\Field|Collection isdefault + * @property Show\Field|Collection touid + * @property Show\Field|Collection fromuid + * @property Show\Field|Collection action + * @property Show\Field|Collection credit_value + * @property Show\Field|Collection follow + * @property Show\Field|Collection followtime + * @property Show\Field|Collection unfollowtime + * @property Show\Field|Collection user_from + * @property Show\Field|Collection centeruid + * @property Show\Field|Collection groupname + * @property Show\Field|Collection fansnum + * @property Show\Field|Collection attach_id + * @property Show\Field|Collection cron_id + * @property Show\Field|Collection sendtime + * @property Show\Field|Collection finalsendtime + * @property Show\Field|Collection msg_id + * @property Show\Field|Collection msg_data_id + * @property Show\Field|Collection zipcode + * @property Show\Field|Collection fieldid + * @property Show\Field|Collection available + * @property Show\Field|Collection property + * @property Show\Field|Collection credit3 + * @property Show\Field|Collection credit4 + * @property Show\Field|Collection credit5 + * @property Show\Field|Collection credit6 + * @property Show\Field|Collection realname + * @property Show\Field|Collection vip + * @property Show\Field|Collection birthyear + * @property Show\Field|Collection birthmonth + * @property Show\Field|Collection constellation + * @property Show\Field|Collection zodiac + * @property Show\Field|Collection idcard + * @property Show\Field|Collection studentid + * @property Show\Field|Collection grade + * @property Show\Field|Collection nationality + * @property Show\Field|Collection resideprovince + * @property Show\Field|Collection residecity + * @property Show\Field|Collection residedist + * @property Show\Field|Collection graduateschool + * @property Show\Field|Collection company + * @property Show\Field|Collection education + * @property Show\Field|Collection occupation + * @property Show\Field|Collection revenue + * @property Show\Field|Collection affectivestatus + * @property Show\Field|Collection lookingfor + * @property Show\Field|Collection bloodtype + * @property Show\Field|Collection height + * @property Show\Field|Collection weight + * @property Show\Field|Collection alipay + * @property Show\Field|Collection msn + * @property Show\Field|Collection taobao + * @property Show\Field|Collection site + * @property Show\Field|Collection interest + * @property Show\Field|Collection pay_password + * @property Show\Field|Collection oauth_openid + * @property Show\Field|Collection picmd5 + * @property Show\Field|Collection is_read + * @property Show\Field|Collection migration_name + * @property Show\Field|Collection breakpoint + * @property Show\Field|Collection enabled + * @property Show\Field|Collection ability + * @property Show\Field|Collection settings + * @property Show\Field|Collection subscribes + * @property Show\Field|Collection handles + * @property Show\Field|Collection isrulefields + * @property Show\Field|Collection issystem + * @property Show\Field|Collection target + * @property Show\Field|Collection iscard + * @property Show\Field|Collection title_initial + * @property Show\Field|Collection wxapp_support + * @property Show\Field|Collection welcome_support + * @property Show\Field|Collection oauth_type + * @property Show\Field|Collection webapp_support + * @property Show\Field|Collection phoneapp_support + * @property Show\Field|Collection account_support + * @property Show\Field|Collection xzapp_support + * @property Show\Field|Collection aliapp_support + * @property Show\Field|Collection baiduapp_support + * @property Show\Field|Collection toutiaoapp_support + * @property Show\Field|Collection from + * @property Show\Field|Collection cloud_record + * @property Show\Field|Collection eid + * @property Show\Field|Collection entry + * @property Show\Field|Collection direct + * @property Show\Field|Collection multilevel + * @property Show\Field|Collection parent + * @property Show\Field|Collection install_status + * @property Show\Field|Collection main_module_name + * @property Show\Field|Collection main_module_logo + * @property Show\Field|Collection has_new_version + * @property Show\Field|Collection has_new_branch + * @property Show\Field|Collection is_ban + * @property Show\Field|Collection lastupdatetime + * @property Show\Field|Collection cloud_id + * @property Show\Field|Collection buytime + * @property Show\Field|Collection module_status + * @property Show\Field|Collection main_module + * @property Show\Field|Collection rank + * @property Show\Field|Collection plugin_name + * @property Show\Field|Collection module_name + * @property Show\Field|Collection hqurl + * @property Show\Field|Collection parent_id + * @property Show\Field|Collection incontent + * @property Show\Field|Collection modules + * @property Show\Field|Collection required + * @property Show\Field|Collection unchangeable + * @property Show\Field|Collection showinregister + * @property Show\Field|Collection field_length + * @property Show\Field|Collection qrcid + * @property Show\Field|Collection scene_str + * @property Show\Field|Collection ticket + * @property Show\Field|Collection expire + * @property Show\Field|Collection subnum + * @property Show\Field|Collection containtype + * @property Show\Field|Collection kid + * @property Show\Field|Collection iscommend + * @property Show\Field|Collection ishot + * @property Show\Field|Collection pcate + * @property Show\Field|Collection ccate + * @property Show\Field|Collection template + * @property Show\Field|Collection linkurl + * @property Show\Field|Collection edittime + * @property Show\Field|Collection iscomment + * @property Show\Field|Collection nid + * @property Show\Field|Collection ishomepage + * @property Show\Field|Collection icontype + * @property Show\Field|Collection css + * @property Show\Field|Collection site_info + * @property Show\Field|Collection bindhost + * @property Show\Field|Collection section + * @property Show\Field|Collection categoryid + * @property Show\Field|Collection html + * @property Show\Field|Collection multipage + * @property Show\Field|Collection goodnum + * @property Show\Field|Collection founder_uid + * @property Show\Field|Collection amount + * @property Show\Field|Collection order_amount + * @property Show\Field|Collection cash_log_id + * @property Show\Field|Collection account_num + * @property Show\Field|Collection wxapp_num + * @property Show\Field|Collection unit + * @property Show\Field|Collection slide + * @property Show\Field|Collection synopsis + * @property Show\Field|Collection module_group + * @property Show\Field|Collection api_num + * @property Show\Field|Collection user_group_price + * @property Show\Field|Collection user_group + * @property Show\Field|Collection account_group + * @property Show\Field|Collection platform_num + * @property Show\Field|Collection aliapp_num + * @property Show\Field|Collection baiduapp_num + * @property Show\Field|Collection phoneapp_num + * @property Show\Field|Collection toutiaoapp_num + * @property Show\Field|Collection webapp_num + * @property Show\Field|Collection xzapp_num + * @property Show\Field|Collection wish_branch + * @property Show\Field|Collection is_edited + * @property Show\Field|Collection branchs + * @property Show\Field|Collection orderid + * @property Show\Field|Collection goodsid + * @property Show\Field|Collection duration + * @property Show\Field|Collection buyer + * @property Show\Field|Collection buyerid + * @property Show\Field|Collection changeprice + * @property Show\Field|Collection wxapp + * @property Show\Field|Collection templateid + * @property Show\Field|Collection variable + * @property Show\Field|Collection sections + * @property Show\Field|Collection new + * @property Show\Field|Collection cancel + * @property Show\Field|Collection cumulate + * @property Show\Field|Collection date + * @property Show\Field|Collection hit + * @property Show\Field|Collection count + * @property Show\Field|Collection ip_count + * @property Show\Field|Collection full_amount + * @property Show\Field|Collection discounts + * @property Show\Field|Collection is_new_user + * @property Show\Field|Collection inventory_use + * @property Show\Field|Collection storetype_id + * @property Show\Field|Collection active_type + * @property Show\Field|Collection usable_number + * @property Show\Field|Collection usable_start_time + * @property Show\Field|Collection usable_end_time + * @property Show\Field|Collection add_user_id + * @property Show\Field|Collection update_user_id + * @property Show\Field|Collection discount_type + * @property Show\Field|Collection system_coupon_user_id + * @property Show\Field|Collection receive_time + * @property Show\Field|Collection number_remain + * @property Show\Field|Collection receive_type + * @property Show\Field|Collection one_receive_number + * @property Show\Field|Collection user_receive_id + * @property Show\Field|Collection system_coupon_id + * @property Show\Field|Collection use_time + * @property Show\Field|Collection return_time + * @property Show\Field|Collection default_acid + * @property Show\Field|Collection menuid + * @property Show\Field|Collection client_platform_type + * @property Show\Field|Collection shortcut + * @property Show\Field|Collection version_id + * @property Show\Field|Collection owner_uid + * @property Show\Field|Collection templates + * @property Show\Field|Collection link_uniacid + * @property Show\Field|Collection passport + * @property Show\Field|Collection oauth + * @property Show\Field|Collection jsauth_acid + * @property Show\Field|Collection notify + * @property Show\Field|Collection creditnames + * @property Show\Field|Collection creditbehaviors + * @property Show\Field|Collection welcome + * @property Show\Field|Collection default + * @property Show\Field|Collection default_message + * @property Show\Field|Collection payment + * @property Show\Field|Collection stat + * @property Show\Field|Collection default_site + * @property Show\Field|Collection sync + * @property Show\Field|Collection recharge + * @property Show\Field|Collection tplnotice + * @property Show\Field|Collection grouplevel + * @property Show\Field|Collection mcplugin + * @property Show\Field|Collection exchange_enable + * @property Show\Field|Collection coupon_type + * @property Show\Field|Collection menuset + * @property Show\Field|Collection statistics + * @property Show\Field|Collection bind_domain + * @property Show\Field|Collection comment_status + * @property Show\Field|Collection reply_setting + * @property Show\Field|Collection default_module + * @property Show\Field|Collection attachment_limit + * @property Show\Field|Collection attachment_size + * @property Show\Field|Collection sync_member + * @property Show\Field|Collection remote + * @property Show\Field|Collection receiver + * @property Show\Field|Collection verifycode + * @property Show\Field|Collection failed_count + * @property Show\Field|Collection apiurl + * @property Show\Field|Collection default_text + * @property Show\Field|Collection cachetime + * @property Show\Field|Collection founder_groupid + * @property Show\Field|Collection joindate + * @property Show\Field|Collection starttime + * @property Show\Field|Collection register_type + * @property Show\Field|Collection welcome_link + * @property Show\Field|Collection notice_setting + * @property Show\Field|Collection is_bind + * @property Show\Field|Collection user_category + * @property Show\Field|Collection token_expire + * @property Show\Field|Collection bind_sign + * @property Show\Field|Collection third_type + * @property Show\Field|Collection third_nickname + * @property Show\Field|Collection maxaccount + * @property Show\Field|Collection maxwxapp + * @property Show\Field|Collection maxwebapp + * @property Show\Field|Collection maxphoneapp + * @property Show\Field|Collection maxxzapp + * @property Show\Field|Collection maxaliapp + * @property Show\Field|Collection maxbaiduapp + * @property Show\Field|Collection maxtoutiaoapp + * @property Show\Field|Collection uni_group_id + * @property Show\Field|Collection create_group_id + * @property Show\Field|Collection timelimit + * @property Show\Field|Collection package + * @property Show\Field|Collection users_group_id + * @property Show\Field|Collection inviteuid + * @property Show\Field|Collection login_at + * @property Show\Field|Collection fakeid + * @property Show\Field|Collection workerid + * @property Show\Field|Collection is_send_mobile_status + * @property Show\Field|Collection send_expire_status + * @property Show\Field|Collection width + * @property Show\Field|Collection thumb_media_id + * @property Show\Field|Collection thumb_url + * @property Show\Field|Collection digest + * @property Show\Field|Collection content_source_url + * @property Show\Field|Collection show_cover_pic + * @property Show\Field|Collection need_open_comment + * @property Show\Field|Collection only_fans_can_comment + * @property Show\Field|Collection session_cnt + * @property Show\Field|Collection visit_pv + * @property Show\Field|Collection visit_uv + * @property Show\Field|Collection visit_uv_new + * @property Show\Field|Collection stay_time_uv + * @property Show\Field|Collection stay_time_session + * @property Show\Field|Collection visit_depth + * @property Show\Field|Collection ref_date + * @property Show\Field|Collection design_method + * @property Show\Field|Collection quickmenu + * @property Show\Field|Collection entry_id + * @property Show\Field|Collection appjson + * @property Show\Field|Collection default_appjson + * @property Show\Field|Collection use_default + * @property Show\Field|Collection last_modules + * @property Show\Field|Collection tominiprogram + * @property Show\Field|Collection upload_time + * @property Show\Field|Collection cid + * @property Show\Field|Collection brand_name + * @property Show\Field|Collection logo_url + * @property Show\Field|Collection success + * @property Show\Field|Collection error + * @property Show\Field|Collection c_attitude + * @property Show\Field|Collection c_service + * @property Show\Field|Collection c_quality + * @property Show\Field|Collection c_average + * @property Show\Field|Collection service_personnel_id + * @property Show\Field|Collection user_created_at + * @property Show\Field|Collection qr_url + * @property Show\Field|Collection head_url + * @property Show\Field|Collection device_name + * @property Show\Field|Collection bind_time + * @property Show\Field|Collection order + * @property Show\Field|Collection uri + * @property Show\Field|Collection permission_id + * @property Show\Field|Collection http_method + * @property Show\Field|Collection http_path + * @property Show\Field|Collection role_id + * @property Show\Field|Collection remember_token + * @property Show\Field|Collection migration + * @property Show\Field|Collection batch + * @property Show\Field|Collection email_verified_at + * + * @method Show\Field|Collection id(string $label = null) + * @method Show\Field|Collection username(string $label = null) + * @method Show\Field|Collection name(string $label = null) + * @method Show\Field|Collection roles(string $label = null) + * @method Show\Field|Collection permissions(string $label = null) + * @method Show\Field|Collection created_at(string $label = null) + * @method Show\Field|Collection updated_at(string $label = null) + * @method Show\Field|Collection avatar(string $label = null) + * @method Show\Field|Collection user(string $label = null) + * @method Show\Field|Collection method(string $label = null) + * @method Show\Field|Collection path(string $label = null) + * @method Show\Field|Collection ip(string $label = null) + * @method Show\Field|Collection input(string $label = null) + * @method Show\Field|Collection slug(string $label = null) + * @method Show\Field|Collection version(string $label = null) + * @method Show\Field|Collection alias(string $label = null) + * @method Show\Field|Collection authors(string $label = null) + * @method Show\Field|Collection enable(string $label = null) + * @method Show\Field|Collection imported(string $label = null) + * @method Show\Field|Collection config(string $label = null) + * @method Show\Field|Collection require(string $label = null) + * @method Show\Field|Collection require_dev(string $label = null) + * @method Show\Field|Collection robot_nickname(string $label = null) + * @method Show\Field|Collection is_use(string $label = null) + * @method Show\Field|Collection nickname(string $label = null) + * @method Show\Field|Collection password(string $label = null) + * @method Show\Field|Collection salt(string $label = null) + * @method Show\Field|Collection email(string $label = null) + * @method Show\Field|Collection loginfailure(string $label = null) + * @method Show\Field|Collection logintime(string $label = null) + * @method Show\Field|Collection loginip(string $label = null) + * @method Show\Field|Collection createtime(string $label = null) + * @method Show\Field|Collection updatetime(string $label = null) + * @method Show\Field|Collection token(string $label = null) + * @method Show\Field|Collection status(string $label = null) + * @method Show\Field|Collection market_id(string $label = null) + * @method Show\Field|Collection admin_id(string $label = null) + * @method Show\Field|Collection url(string $label = null) + * @method Show\Field|Collection content(string $label = null) + * @method Show\Field|Collection useragent(string $label = null) + * @method Show\Field|Collection pid(string $label = null) + * @method Show\Field|Collection shortname(string $label = null) + * @method Show\Field|Collection mergename(string $label = null) + * @method Show\Field|Collection level(string $label = null) + * @method Show\Field|Collection pinyin(string $label = null) + * @method Show\Field|Collection code(string $label = null) + * @method Show\Field|Collection zip(string $label = null) + * @method Show\Field|Collection first(string $label = null) + * @method Show\Field|Collection lng(string $label = null) + * @method Show\Field|Collection lat(string $label = null) + * @method Show\Field|Collection user_id(string $label = null) + * @method Show\Field|Collection imagewidth(string $label = null) + * @method Show\Field|Collection imageheight(string $label = null) + * @method Show\Field|Collection imagetype(string $label = null) + * @method Show\Field|Collection imageframes(string $label = null) + * @method Show\Field|Collection filesize(string $label = null) + * @method Show\Field|Collection mimetype(string $label = null) + * @method Show\Field|Collection extparam(string $label = null) + * @method Show\Field|Collection uploadtime(string $label = null) + * @method Show\Field|Collection storage(string $label = null) + * @method Show\Field|Collection sha1(string $label = null) + * @method Show\Field|Collection rules(string $label = null) + * @method Show\Field|Collection uid(string $label = null) + * @method Show\Field|Collection group_id(string $label = null) + * @method Show\Field|Collection type(string $label = null) + * @method Show\Field|Collection icon(string $label = null) + * @method Show\Field|Collection condition(string $label = null) + * @method Show\Field|Collection remark(string $label = null) + * @method Show\Field|Collection ismenu(string $label = null) + * @method Show\Field|Collection weigh(string $label = null) + * @method Show\Field|Collection flag(string $label = null) + * @method Show\Field|Collection image(string $label = null) + * @method Show\Field|Collection keywords(string $label = null) + * @method Show\Field|Collection diyname(string $label = null) + * @method Show\Field|Collection params(string $label = null) + * @method Show\Field|Collection command(string $label = null) + * @method Show\Field|Collection executetime(string $label = null) + * @method Show\Field|Collection group(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 extend(string $label = null) + * @method Show\Field|Collection event(string $label = null) + * @method Show\Field|Collection times(string $label = null) + * @method Show\Field|Collection mobile(string $label = null) + * @method Show\Field|Collection category_id(string $label = null) + * @method Show\Field|Collection category_ids(string $label = null) + * @method Show\Field|Collection week(string $label = null) + * @method Show\Field|Collection genderdata(string $label = null) + * @method Show\Field|Collection hobbydata(string $label = null) + * @method Show\Field|Collection images(string $label = null) + * @method Show\Field|Collection attachfile(string $label = null) + * @method Show\Field|Collection city(string $label = null) + * @method Show\Field|Collection json(string $label = null) + * @method Show\Field|Collection price(string $label = null) + * @method Show\Field|Collection views(string $label = null) + * @method Show\Field|Collection startdate(string $label = null) + * @method Show\Field|Collection activitytime(string $label = null) + * @method Show\Field|Collection year(string $label = null) + * @method Show\Field|Collection refreshtime(string $label = null) + * @method Show\Field|Collection deletetime(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 birthday(string $label = null) + * @method Show\Field|Collection bio(string $label = null) + * @method Show\Field|Collection money(string $label = null) + * @method Show\Field|Collection score(string $label = null) + * @method Show\Field|Collection successions(string $label = null) + * @method Show\Field|Collection maxsuccessions(string $label = null) + * @method Show\Field|Collection prevtime(string $label = null) + * @method Show\Field|Collection joinip(string $label = null) + * @method Show\Field|Collection jointime(string $label = null) + * @method Show\Field|Collection verification(string $label = null) + * @method Show\Field|Collection before(string $label = null) + * @method Show\Field|Collection after(string $label = null) + * @method Show\Field|Collection memo(string $label = null) + * @method Show\Field|Collection expiretime(string $label = null) + * @method Show\Field|Collection oldversion(string $label = null) + * @method Show\Field|Collection newversion(string $label = null) + * @method Show\Field|Collection packagesize(string $label = null) + * @method Show\Field|Collection downloadurl(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 uniacid(string $label = null) + * @method Show\Field|Collection hash(string $label = null) + * @method Show\Field|Collection isconnect(string $label = null) + * @method Show\Field|Collection isdeleted(string $label = null) + * @method Show\Field|Collection endtime(string $label = null) + * @method Show\Field|Collection send_account_expire_status(string $label = null) + * @method Show\Field|Collection send_api_expire_status(string $label = null) + * @method Show\Field|Collection key(string $label = null) + * @method Show\Field|Collection appid(string $label = null) + * @method Show\Field|Collection secret(string $label = null) + * @method Show\Field|Collection encodingaeskey(string $label = null) + * @method Show\Field|Collection account(string $label = null) + * @method Show\Field|Collection original(string $label = null) + * @method Show\Field|Collection signature(string $label = null) + * @method Show\Field|Collection country(string $label = null) + * @method Show\Field|Collection province(string $label = null) + * @method Show\Field|Collection lastupdate(string $label = null) + * @method Show\Field|Collection styleid(string $label = null) + * @method Show\Field|Collection subscribeurl(string $label = null) + * @method Show\Field|Collection auth_refresh_token(string $label = null) + * @method Show\Field|Collection appdomain(string $label = null) + * @method Show\Field|Collection xzapp_id(string $label = null) + * @method Show\Field|Collection displayorder(string $label = null) + * @method Show\Field|Collection group_name(string $label = null) + * @method Show\Field|Collection permission(string $label = null) + * @method Show\Field|Collection system(string $label = null) + * @method Show\Field|Collection storeid(string $label = null) + * @method Show\Field|Collection openid(string $label = null) + * @method Show\Field|Collection articleid(string $label = null) + * @method Show\Field|Collection parentid(string $label = null) + * @method Show\Field|Collection is_like(string $label = null) + * @method Show\Field|Collection is_reply(string $label = null) + * @method Show\Field|Collection like_num(string $label = null) + * @method Show\Field|Collection cateid(string $label = null) + * @method Show\Field|Collection thumb(string $label = null) + * @method Show\Field|Collection source(string $label = null) + * @method Show\Field|Collection author(string $label = null) + * @method Show\Field|Collection is_display(string $label = null) + * @method Show\Field|Collection is_show_home(string $label = null) + * @method Show\Field|Collection click(string $label = null) + * @method Show\Field|Collection style(string $label = null) + * @method Show\Field|Collection notice_id(string $label = null) + * @method Show\Field|Collection is_new(string $label = null) + * @method Show\Field|Collection rid(string $label = null) + * @method Show\Field|Collection weid(string $label = null) + * @method Show\Field|Collection phone(string $label = null) + * @method Show\Field|Collection qq(string $label = null) + * @method Show\Field|Collection dist(string $label = null) + * @method Show\Field|Collection address(string $label = null) + * @method Show\Field|Collection industry1(string $label = null) + * @method Show\Field|Collection industry2(string $label = null) + * @method Show\Field|Collection from_user(string $label = null) + * @method Show\Field|Collection accountname(string $label = null) + * @method Show\Field|Collection pwd(string $label = null) + * @method Show\Field|Collection pay_account(string $label = null) + * @method Show\Field|Collection dateline(string $label = null) + * @method Show\Field|Collection role(string $label = null) + * @method Show\Field|Collection lastvisit(string $label = null) + * @method Show\Field|Collection lastip(string $label = null) + * @method Show\Field|Collection areaid(string $label = null) + * @method Show\Field|Collection is_admin_order(string $label = null) + * @method Show\Field|Collection is_notice_order(string $label = null) + * @method Show\Field|Collection is_notice_queue(string $label = null) + * @method Show\Field|Collection is_notice_service(string $label = null) + * @method Show\Field|Collection is_notice_boss(string $label = null) + * @method Show\Field|Collection authority(string $label = null) + * @method Show\Field|Collection logo(string $label = null) + * @method Show\Field|Collection src(string $label = null) + * @method Show\Field|Collection src2(string $label = null) + * @method Show\Field|Collection created_time(string $label = null) + * @method Show\Field|Collection orderby(string $label = null) + * @method Show\Field|Collection xcx_name(string $label = null) + * @method Show\Field|Collection item(string $label = null) + * @method Show\Field|Collection area_name(string $label = null) + * @method Show\Field|Collection num(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 time(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_time(string $label = null) + * @method Show\Field|Collection is_open(string $label = null) + * @method Show\Field|Collection apikey(string $label = null) + * @method Show\Field|Collection table_id(string $label = null) + * @method Show\Field|Collection sh_time(string $label = null) + * @method Show\Field|Collection user_name(string $label = null) + * @method Show\Field|Collection tx_cost(string $label = null) + * @method Show\Field|Collection sj_cost(string $label = null) + * @method Show\Field|Collection day(string $label = null) + * @method Show\Field|Collection integral(string $label = null) + * @method Show\Field|Collection start_time(string $label = null) + * @method Show\Field|Collection end_time(string $label = null) + * @method Show\Field|Collection full(string $label = null) + * @method Show\Field|Collection reduce(string $label = null) + * @method Show\Field|Collection stock(string $label = null) + * @method Show\Field|Collection instruction(string $label = null) + * @method Show\Field|Collection type_id(string $label = null) + * @method Show\Field|Collection is_hy(string $label = null) + * @method Show\Field|Collection is_tjhb(string $label = null) + * @method Show\Field|Collection yhq_set(string $label = null) + * @method Show\Field|Collection time2(string $label = null) + * @method Show\Field|Collection details(string $label = null) + * @method Show\Field|Collection reduction(string $label = null) + * @method Show\Field|Collection money2(string $label = null) + * @method Show\Field|Collection form_id(string $label = null) + * @method Show\Field|Collection start(string $label = null) + * @method Show\Field|Collection end(string $label = null) + * @method Show\Field|Collection tag_id(string $label = null) + * @method Show\Field|Collection dyj_title(string $label = null) + * @method Show\Field|Collection dyj_id(string $label = null) + * @method Show\Field|Collection dyj_key(string $label = null) + * @method Show\Field|Collection api(string $label = null) + * @method Show\Field|Collection mid(string $label = null) + * @method Show\Field|Collection location(string $label = null) + * @method Show\Field|Collection yy_id(string $label = null) + * @method Show\Field|Collection fezh(string $label = null) + * @method Show\Field|Collection fe_ukey(string $label = null) + * @method Show\Field|Collection fe_dycode(string $label = null) + * @method Show\Field|Collection xx_sn(string $label = null) + * @method Show\Field|Collection tag_name(string $label = null) + * @method Show\Field|Collection sort(string $label = null) + * @method Show\Field|Collection son_id(string $label = null) + * @method Show\Field|Collection note(string $label = null) + * @method Show\Field|Collection sn(string $label = null) + * @method Show\Field|Collection simnum(string $label = null) + * @method Show\Field|Collection addtime(string $label = null) + * @method Show\Field|Collection fx_details(string $label = null) + * @method Show\Field|Collection tx_details(string $label = null) + * @method Show\Field|Collection is_fx(string $label = null) + * @method Show\Field|Collection is_ej(string $label = null) + * @method Show\Field|Collection is_type(string $label = null) + * @method Show\Field|Collection tx_rate(string $label = null) + * @method Show\Field|Collection dn_yj(string $label = null) + * @method Show\Field|Collection dn_ej(string $label = null) + * @method Show\Field|Collection wm_yj(string $label = null) + * @method Show\Field|Collection wm_ej(string $label = null) + * @method Show\Field|Collection tx_money(string $label = null) + * @method Show\Field|Collection img2(string $label = null) + * @method Show\Field|Collection instructions(string $label = null) + * @method Show\Field|Collection fx_name(string $label = null) + * @method Show\Field|Collection is_check(string $label = null) + * @method Show\Field|Collection xx_name(string $label = null) + * @method Show\Field|Collection fx_user(string $label = null) + * @method Show\Field|Collection label_id(string $label = null) + * @method Show\Field|Collection vip_money(string $label = null) + * @method Show\Field|Collection dn_money(string $label = null) + * @method Show\Field|Collection is_show(string $label = null) + * @method Show\Field|Collection inventory(string $label = null) + * @method Show\Field|Collection sales(string $label = null) + * @method Show\Field|Collection is_gg(string $label = null) + * @method Show\Field|Collection is_hot(string $label = null) + * @method Show\Field|Collection is_zp(string $label = null) + * @method Show\Field|Collection quantity(string $label = null) + * @method Show\Field|Collection box_money(string $label = null) + * @method Show\Field|Collection is_tj(string $label = null) + * @method Show\Field|Collection restrict_num(string $label = null) + * @method Show\Field|Collection start_num(string $label = null) + * @method Show\Field|Collection dn_hymoney(string $label = null) + * @method Show\Field|Collection is_max(string $label = null) + * @method Show\Field|Collection good_unit(string $label = null) + * @method Show\Field|Collection goods_id(string $label = null) + * @method Show\Field|Collection goods_logo(string $label = null) + * @method Show\Field|Collection goods_name(string $label = null) + * @method Show\Field|Collection kt_num(string $label = null) + * @method Show\Field|Collection yg_num(string $label = null) + * @method Show\Field|Collection kt_time(string $label = null) + * @method Show\Field|Collection dq_time(string $label = null) + * @method Show\Field|Collection pt_price(string $label = null) + * @method Show\Field|Collection y_price(string $label = null) + * @method Show\Field|Collection dd_price(string $label = null) + * @method Show\Field|Collection ycd_num(string $label = null) + * @method Show\Field|Collection ysc_num(string $label = null) + * @method Show\Field|Collection people(string $label = null) + * @method Show\Field|Collection xf_time(string $label = null) + * @method Show\Field|Collection is_shelves(string $label = null) + * @method Show\Field|Collection display(string $label = null) + * @method Show\Field|Collection introduction(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_num(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_tel(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 question(string $label = null) + * @method Show\Field|Collection answer(string $label = null) + * @method Show\Field|Collection month(string $label = null) + * @method Show\Field|Collection user_tel(string $label = null) + * @method Show\Field|Collection days(string $label = null) + * @method Show\Field|Collection cerated_time(string $label = null) + * @method Show\Field|Collection goods_details(string $label = null) + * @method Show\Field|Collection process_details(string $label = null) + * @method Show\Field|Collection attention_details(string $label = null) + * @method Show\Field|Collection hb_moeny(string $label = null) + * @method Show\Field|Collection good_id(string $label = null) + * @method Show\Field|Collection good_name(string $label = null) + * @method Show\Field|Collection good_img(string $label = null) + * @method Show\Field|Collection access_token(string $label = null) + * @method Show\Field|Collection cityname(string $label = null) + * @method Show\Field|Collection bindto_id(string $label = null) + * @method Show\Field|Collection is_waimai_order_speak(string $label = null) + * @method Show\Field|Collection is_dangmian_order_speak(string $label = null) + * @method Show\Field|Collection is_ziti_order_speak(string $label = null) + * @method Show\Field|Collection is_waimai_pay_speak(string $label = null) + * @method Show\Field|Collection is_dangmian_pay_speak(string $label = null) + * @method Show\Field|Collection is_ziti_pay_speak(string $label = null) + * @method Show\Field|Collection waimai_order_temp(string $label = null) + * @method Show\Field|Collection dangmian_order_temp(string $label = null) + * @method Show\Field|Collection ziti_order_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 ziti_pay_temp(string $label = null) + * @method Show\Field|Collection introduce(string $label = null) + * @method Show\Field|Collection imgs(string $label = null) + * @method Show\Field|Collection coordinates(string $label = null) + * @method Show\Field|Collection poundage(string $label = null) + * @method Show\Field|Collection dn_poundage(string $label = null) + * @method Show\Field|Collection dm_poundage(string $label = null) + * @method Show\Field|Collection yd_poundage(string $label = null) + * @method Show\Field|Collection dada_number(string $label = null) + * @method Show\Field|Collection is_open_dada(string $label = null) + * @method Show\Field|Collection loudspeaker_imei(string $label = null) + * @method Show\Field|Collection dishes_menu_intro(string $label = null) + * @method Show\Field|Collection create_time(string $label = null) + * @method Show\Field|Collection sender(string $label = null) + * @method Show\Field|Collection is_email(string $label = null) + * @method Show\Field|Collection xd_tid(string $label = null) + * @method Show\Field|Collection jd_tid(string $label = null) + * @method Show\Field|Collection yy_tid(string $label = null) + * @method Show\Field|Collection dm_tid(string $label = null) + * @method Show\Field|Collection sj_tid(string $label = null) + * @method Show\Field|Collection sj_tid2(string $label = null) + * @method Show\Field|Collection wx_appid(string $label = null) + * @method Show\Field|Collection wx_secret(string $label = null) + * @method Show\Field|Collection is_dxyz(string $label = null) + * @method Show\Field|Collection appkey(string $label = null) + * @method Show\Field|Collection tpl_id(string $label = null) + * @method Show\Field|Collection jj_tid(string $label = null) + * @method Show\Field|Collection tk_tid(string $label = null) + * @method Show\Field|Collection rzsh_tid(string $label = null) + * @method Show\Field|Collection rzcg_tid(string $label = null) + * @method Show\Field|Collection rzjj_tid(string $label = null) + * @method Show\Field|Collection cz_tid(string $label = null) + * @method Show\Field|Collection xdd_tid(string $label = null) + * @method Show\Field|Collection xdd_tid2(string $label = null) + * @method Show\Field|Collection qf_tid(string $label = null) + * @method Show\Field|Collection qh_tid(string $label = null) + * @method Show\Field|Collection tx_appkey(string $label = null) + * @method Show\Field|Collection template_id(string $label = null) + * @method Show\Field|Collection sign(string $label = null) + * @method Show\Field|Collection sjyy_tid(string $label = null) + * @method Show\Field|Collection shtk_tid(string $label = null) + * @method Show\Field|Collection aliyun_appkey(string $label = null) + * @method Show\Field|Collection aliyun_appsecret(string $label = null) + * @method Show\Field|Collection aliyun_sign(string $label = null) + * @method Show\Field|Collection aliyun_id(string $label = null) + * @method Show\Field|Collection group_tid(string $label = null) + * @method Show\Field|Collection rush_tid(string $label = null) + * @method Show\Field|Collection wechat_appId(string $label = null) + * @method Show\Field|Collection wechat_appsecret(string $label = null) + * @method Show\Field|Collection wechat_wm_tid(string $label = null) + * @method Show\Field|Collection fs_time(string $label = null) + * @method Show\Field|Collection title_color(string $label = null) + * @method Show\Field|Collection title_color2(string $label = null) + * @method Show\Field|Collection logo2(string $label = null) + * @method Show\Field|Collection typename(string $label = null) + * @method Show\Field|Collection order_main_id(string $label = null) + * @method Show\Field|Collection jd_time(string $label = null) + * @method Show\Field|Collection cancel_time(string $label = null) + * @method Show\Field|Collection complete_time(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 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 area(string $label = null) + * @method Show\Field|Collection del(string $label = null) + * @method Show\Field|Collection form_id2(string $label = null) + * @method Show\Field|Collection order_type(string $label = null) + * @method Show\Field|Collection delivery_time(string $label = null) + * @method Show\Field|Collection sex(string $label = null) + * @method Show\Field|Collection discount(string $label = null) + * @method Show\Field|Collection tableware(string $label = null) + * @method Show\Field|Collection dd_info(string $label = null) + * @method Show\Field|Collection yhq_money(string $label = null) + * @method Show\Field|Collection coupon_id(string $label = null) + * @method Show\Field|Collection yhq_money2(string $label = null) + * @method Show\Field|Collection coupon_id2(string $label = null) + * @method Show\Field|Collection dn_state(string $label = null) + * @method Show\Field|Collection dm_state(string $label = null) + * @method Show\Field|Collection yy_state(string $label = null) + * @method Show\Field|Collection deposit(string $label = null) + * @method Show\Field|Collection ship_id(string $label = null) + * @method Show\Field|Collection zk_money(string $label = null) + * @method Show\Field|Collection is_dd(string $label = null) + * @method Show\Field|Collection pt_info(string $label = null) + * @method Show\Field|Collection kfw_info(string $label = null) + * @method Show\Field|Collection hb_type(string $label = null) + * @method Show\Field|Collection original_money(string $label = null) + * @method Show\Field|Collection oid(string $label = null) + * @method Show\Field|Collection sss_peisong_id(string $label = null) + * @method Show\Field|Collection time_add(string $label = null) + * @method Show\Field|Collection time_create(string $label = null) + * @method Show\Field|Collection dishes_id(string $label = null) + * @method Show\Field|Collection spec(string $label = null) + * @method Show\Field|Collection is_jc(string $label = null) + * @method Show\Field|Collection is_qg(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 update_time(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 store_ids(string $label = null) + * @method Show\Field|Collection delivery_no(string $label = null) + * @method Show\Field|Collection dada_fee(string $label = null) + * @method Show\Field|Collection time_delivery(string $label = null) + * @method Show\Field|Collection time_pay(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 print_num(string $label = null) + * @method Show\Field|Collection mchid(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_key(string $label = null) + * @method Show\Field|Collection jf_proportion(string $label = null) + * @method Show\Field|Collection integral2(string $label = null) + * @method Show\Field|Collection source_id(string $label = null) + * @method Show\Field|Collection shop_no(string $label = null) + * @method Show\Field|Collection surplus(string $label = null) + * @method Show\Field|Collection consumption_time(string $label = null) + * @method Show\Field|Collection hot(string $label = null) + * @method Show\Field|Collection state2(string $label = null) + * @method Show\Field|Collection qg_num(string $label = null) + * @method Show\Field|Collection good_logo(string $label = null) + * @method Show\Field|Collection hx_time(string $label = null) + * @method Show\Field|Collection label(string $label = null) + * @method Show\Field|Collection cjwt(string $label = null) + * @method Show\Field|Collection rzxy(string $label = null) + * @method Show\Field|Collection is_ruzhu(string $label = null) + * @method Show\Field|Collection is_img(string $label = null) + * @method Show\Field|Collection dr_id(string $label = null) + * @method Show\Field|Collection qg_name(string $label = null) + * @method Show\Field|Collection qg_logo(string $label = null) + * @method Show\Field|Collection time3(string $label = null) + * @method Show\Field|Collection one(string $label = null) + * @method Show\Field|Collection is_bq(string $label = null) + * @method Show\Field|Collection bq_integral(string $label = null) + * @method Show\Field|Collection qd_img(string $label = null) + * @method Show\Field|Collection wm_tid(string $label = null) + * @method Show\Field|Collection dn_tid(string $label = null) + * @method Show\Field|Collection is_wm(string $label = null) + * @method Show\Field|Collection is_dn(string $label = null) + * @method Show\Field|Collection is_yy(string $label = null) + * @method Show\Field|Collection is_tk(string $label = null) + * @method Show\Field|Collection openId(string $label = null) + * @method Show\Field|Collection wm_money(string $label = null) + * @method Show\Field|Collection combination(string $label = null) + * @method Show\Field|Collection spec_id(string $label = null) + * @method Show\Field|Collection color(string $label = null) + * @method Show\Field|Collection sss_shop_id(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 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 md_area(string $label = null) + * @method Show\Field|Collection md_type(string $label = null) + * @method Show\Field|Collection capita(string $label = null) + * @method Show\Field|Collection tx_user(string $label = null) + * @method Show\Field|Collection environment(string $label = null) + * @method Show\Field|Collection is_brand(string $label = null) + * @method Show\Field|Collection rz_time(string $label = null) + * @method Show\Field|Collection rzdq_time(string $label = null) + * @method Show\Field|Collection sq_id(string $label = null) + * @method Show\Field|Collection zm_img(string $label = null) + * @method Show\Field|Collection fm_img(string $label = null) + * @method Show\Field|Collection zf_state(string $label = null) + * @method Show\Field|Collection link_name(string $label = null) + * @method Show\Field|Collection link_tel(string $label = null) + * @method Show\Field|Collection sq_time(string $label = null) + * @method Show\Field|Collection is_mp3(string $label = null) + * @method Show\Field|Collection is_video(string $label = null) + * @method Show\Field|Collection store_mp3(string $label = null) + * @method Show\Field|Collection store_video(string $label = null) + * @method Show\Field|Collection ps_poundage(string $label = null) + * @method Show\Field|Collection qrcode(string $label = null) + * @method Show\Field|Collection is_select(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 store_wallet(string $label = null) + * @method Show\Field|Collection award_money(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 is_jd(string $label = null) + * @method Show\Field|Collection is_jfpay(string $label = null) + * @method Show\Field|Collection is_yuepay(string $label = null) + * @method Show\Field|Collection is_yuejf(string $label = null) + * @method Show\Field|Collection is_wxpay(string $label = null) + * @method Show\Field|Collection is_pj(string $label = null) + * @method Show\Field|Collection is_chzf(string $label = null) + * @method Show\Field|Collection box_name(string $label = null) + * @method Show\Field|Collection yhq_name(string $label = null) + * @method Show\Field|Collection sy_name(string $label = null) + * @method Show\Field|Collection dn_name(string $label = null) + * @method Show\Field|Collection wm_name(string $label = null) + * @method Show\Field|Collection yy_name(string $label = null) + * @method Show\Field|Collection yhq_img(string $label = null) + * @method Show\Field|Collection sy_img(string $label = null) + * @method Show\Field|Collection dn_img(string $label = null) + * @method Show\Field|Collection wm_img(string $label = null) + * @method Show\Field|Collection yy_img(string $label = null) + * @method Show\Field|Collection is_yhq(string $label = null) + * @method Show\Field|Collection is_sy(string $label = null) + * @method Show\Field|Collection ps_time(string $label = null) + * @method Show\Field|Collection ps_mode(string $label = null) + * @method Show\Field|Collection ps_jl(string $label = null) + * @method Show\Field|Collection is_zt(string $label = null) + * @method Show\Field|Collection is_hdfk(string $label = null) + * @method Show\Field|Collection print_type(string $label = null) + * @method Show\Field|Collection ztxy(string $label = null) + * @method Show\Field|Collection top_style(string $label = null) + * @method Show\Field|Collection info_style(string $label = null) + * @method Show\Field|Collection yysm(string $label = null) + * @method Show\Field|Collection wmsm(string $label = null) + * @method Show\Field|Collection dnsm(string $label = null) + * @method Show\Field|Collection sysm(string $label = null) + * @method Show\Field|Collection is_wxzf(string $label = null) + * @method Show\Field|Collection print_mode(string $label = null) + * @method Show\Field|Collection is_yydc(string $label = null) + * @method Show\Field|Collection is_ps(string $label = null) + * @method Show\Field|Collection is_ps(string $label = null) + * @method Show\Field|Collection is_cj(string $label = null) + * @method Show\Field|Collection cj_name(string $label = null) + * @method Show\Field|Collection wmps_name(string $label = null) + * @method Show\Field|Collection is_czztpd(string $label = null) + * @method Show\Field|Collection is_dcyhq(string $label = null) + * @method Show\Field|Collection is_pt(string $label = null) + * @method Show\Field|Collection pt_name(string $label = null) + * @method Show\Field|Collection ptsm(string $label = null) + * @method Show\Field|Collection pt_img(string $label = null) + * @method Show\Field|Collection qgsm(string $label = null) + * @method Show\Field|Collection qg_img(string $label = null) + * @method Show\Field|Collection is_ydtime(string $label = null) + * @method Show\Field|Collection is_yyzw(string $label = null) + * @method Show\Field|Collection pd_name(string $label = null) + * @method Show\Field|Collection pdsm(string $label = null) + * @method Show\Field|Collection pd_img(string $label = null) + * @method Show\Field|Collection is_pd(string $label = null) + * @method Show\Field|Collection tz_src(string $label = null) + * @method Show\Field|Collection full_delivery(string $label = null) + * @method Show\Field|Collection is_poundage(string $label = null) + * @method Show\Field|Collection type_name(string $label = null) + * @method Show\Field|Collection appsecret(string $label = null) + * @method Show\Field|Collection url_name(string $label = null) + * @method Show\Field|Collection url_logo(string $label = null) + * @method Show\Field|Collection link_logo(string $label = null) + * @method Show\Field|Collection default_store(string $label = null) + * @method Show\Field|Collection support(string $label = null) + * @method Show\Field|Collection bq_logo(string $label = null) + * @method Show\Field|Collection bq_name(string $label = null) + * @method Show\Field|Collection map_key(string $label = null) + * @method Show\Field|Collection tz_appid(string $label = null) + * @method Show\Field|Collection tz_name(string $label = null) + * @method Show\Field|Collection dada_key(string $label = null) + * @method Show\Field|Collection dada_secret(string $label = null) + * @method Show\Field|Collection is_psxx(string $label = null) + * @method Show\Field|Collection jfgn(string $label = null) + * @method Show\Field|Collection msgn(string $label = null) + * @method Show\Field|Collection fxgn(string $label = null) + * @method Show\Field|Collection typeset(string $label = null) + * @method Show\Field|Collection dc_name(string $label = null) + * @method Show\Field|Collection yd_name(string $label = null) + * @method Show\Field|Collection gs_img(string $label = null) + * @method Show\Field|Collection gs_details(string $label = null) + * @method Show\Field|Collection gs_tel(string $label = null) + * @method Show\Field|Collection gs_time(string $label = null) + * @method Show\Field|Collection gs_add(string $label = null) + * @method Show\Field|Collection gs_zb(string $label = null) + * @method Show\Field|Collection kfw_appid(string $label = null) + * @method Show\Field|Collection kfw_appsecret(string $label = null) + * @method Show\Field|Collection fl_more(string $label = null) + * @method Show\Field|Collection tx_is_open_check(string $label = null) + * @method Show\Field|Collection tx_max_money(string $label = null) + * @method Show\Field|Collection tx_zdmoney(string $label = null) + * @method Show\Field|Collection tx_notice(string $label = null) + * @method Show\Field|Collection is_mdrz(string $label = null) + * @method Show\Field|Collection md_sh(string $label = null) + * @method Show\Field|Collection md_sf(string $label = null) + * @method Show\Field|Collection rz_details(string $label = null) + * @method Show\Field|Collection rz_title(string $label = null) + * @method Show\Field|Collection rz_ms(string $label = null) + * @method Show\Field|Collection countdown(string $label = null) + * @method Show\Field|Collection distance(string $label = null) + * @method Show\Field|Collection is_jf(string $label = null) + * @method Show\Field|Collection fx_title(string $label = null) + * @method Show\Field|Collection fx_title(string $label = null) + * @method Show\Field|Collection hygn(string $label = null) + * @method Show\Field|Collection hy_discount(string $label = null) + * @method Show\Field|Collection hy_details(string $label = null) + * @method Show\Field|Collection kt_details(string $label = null) + * @method Show\Field|Collection cz_notice(string $label = null) + * @method Show\Field|Collection is_cz(string $label = null) + * @method Show\Field|Collection hy_note(string $label = null) + * @method Show\Field|Collection ps_name(string $label = null) + * @method Show\Field|Collection is_tzms(string $label = null) + * @method Show\Field|Collection is_wx(string $label = null) + * @method Show\Field|Collection is_yhk(string $label = null) + * @method Show\Field|Collection is_sj(string $label = null) + * @method Show\Field|Collection is_dada(string $label = null) + * @method Show\Field|Collection is_kfw(string $label = null) + * @method Show\Field|Collection ptgn(string $label = null) + * @method Show\Field|Collection qggn(string $label = null) + * @method Show\Field|Collection is_zb(string $label = null) + * @method Show\Field|Collection isyykg(string $label = null) + * @method Show\Field|Collection zb_img(string $label = null) + * @method Show\Field|Collection is_pay(string $label = null) + * @method Show\Field|Collection pay_money(string $label = null) + * @method Show\Field|Collection is_vip_delivery(string $label = null) + * @method Show\Field|Collection is_tel(string $label = null) + * @method Show\Field|Collection is_sss(string $label = null) + * @method Show\Field|Collection sss_appkey(string $label = null) + * @method Show\Field|Collection sss_secret(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 info(string $label = null) + * @method Show\Field|Collection desc(string $label = null) + * @method Show\Field|Collection tag(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 yd_cost(string $label = null) + * @method Show\Field|Collection order_by(string $label = null) + * @method Show\Field|Collection join_time(string $label = null) + * @method Show\Field|Collection total_score(string $label = null) + * @method Show\Field|Collection wallet(string $label = null) + * @method Show\Field|Collection commission(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 hy_day(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 yh_info(string $label = null) + * @method Show\Field|Collection pt_uniacid(string $label = null) + * @method Show\Field|Collection cy_uniacid(string $label = null) + * @method Show\Field|Collection goods_info(string $label = null) + * @method Show\Field|Collection goods_price(string $label = null) + * @method Show\Field|Collection sender_name(string $label = null) + * @method Show\Field|Collection sender_address(string $label = null) + * @method Show\Field|Collection sender_tel(string $label = null) + * @method Show\Field|Collection sender_lat(string $label = null) + * @method Show\Field|Collection sender_lng(string $label = null) + * @method Show\Field|Collection receiver_name(string $label = null) + * @method Show\Field|Collection receiver_address(string $label = null) + * @method Show\Field|Collection receiver_tel(string $label = null) + * @method Show\Field|Collection receiver_lat(string $label = null) + * @method Show\Field|Collection receiver_lng(string $label = null) + * @method Show\Field|Collection ps_num(string $label = null) + * @method Show\Field|Collection qs_id(string $label = null) + * @method Show\Field|Collection dd_time(string $label = null) + * @method Show\Field|Collection wc_time(string $label = null) + * @method Show\Field|Collection store_logo(string $label = null) + * @method Show\Field|Collection yh_money(string $label = null) + * @method Show\Field|Collection origin_id(string $label = null) + * @method Show\Field|Collection body(string $label = null) + * @method Show\Field|Collection appId(string $label = null) + * @method Show\Field|Collection appSecret(string $label = null) + * @method Show\Field|Collection jdId(string $label = null) + * @method Show\Field|Collection pdId(string $label = null) + * @method Show\Field|Collection weChatId(string $label = null) + * @method Show\Field|Collection client_ip(string $label = null) + * @method Show\Field|Collection bj_logo(string $label = null) + * @method Show\Field|Collection tpl_id2(string $label = null) + * @method Show\Field|Collection tpl_id3(string $label = null) + * @method Show\Field|Collection tpl_id4(string $label = null) + * @method Show\Field|Collection tx_sxf(string $label = null) + * @method Show\Field|Collection db_logo(string $label = null) + * @method Show\Field|Collection db_content(string $label = null) + * @method Show\Field|Collection yc_money(string $label = null) + * @method Show\Field|Collection aliyun_id2(string $label = null) + * @method Show\Field|Collection aliyun_id3(string $label = null) + * @method Show\Field|Collection aliyun_id4(string $label = null) + * @method Show\Field|Collection tx_num(string $label = null) + * @method Show\Field|Collection filename(string $label = null) + * @method Show\Field|Collection attachment(string $label = null) + * @method Show\Field|Collection module_upload_dir(string $label = null) + * @method Show\Field|Collection cloudid(string $label = null) + * @method Show\Field|Collection module(string $label = null) + * @method Show\Field|Collection lastruntime(string $label = null) + * @method Show\Field|Collection nextruntime(string $label = null) + * @method Show\Field|Collection weekday(string $label = null) + * @method Show\Field|Collection hour(string $label = null) + * @method Show\Field|Collection minute(string $label = null) + * @method Show\Field|Collection extra(string $label = null) + * @method Show\Field|Collection tid(string $label = null) + * @method Show\Field|Collection handled(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_url(string $label = null) + * @method Show\Field|Collection is_system(string $label = null) + * @method Show\Field|Collection permission_name(string $label = null) + * @method Show\Field|Collection modulename(string $label = null) + * @method Show\Field|Collection position(string $label = null) + * @method Show\Field|Collection plid(string $label = null) + * @method Show\Field|Collection uniontid(string $label = null) + * @method Show\Field|Collection fee(string $label = null) + * @method Show\Field|Collection is_usecard(string $label = null) + * @method Show\Field|Collection card_type(string $label = null) + * @method Show\Field|Collection card_id(string $label = null) + * @method Show\Field|Collection card_fee(string $label = null) + * @method Show\Field|Collection encrypt_code(string $label = null) + * @method Show\Field|Collection is_wish(string $label = null) + * @method Show\Field|Collection runtime(string $label = null) + * @method Show\Field|Collection runurl(string $label = null) + * @method Show\Field|Collection runsql(string $label = null) + * @method Show\Field|Collection qid(string $label = null) + * @method Show\Field|Collection message(string $label = null) + * @method Show\Field|Collection keyword(string $label = null) + * @method Show\Field|Collection response(string $label = null) + * @method Show\Field|Collection refund_uniontid(string $label = null) + * @method Show\Field|Collection reason(string $label = null) + * @method Show\Field|Collection media_id(string $label = null) + * @method Show\Field|Collection trunk(string $label = null) + * @method Show\Field|Collection result(string $label = null) + * @method Show\Field|Collection sid(string $label = null) + * @method Show\Field|Collection data(string $label = null) + * @method Show\Field|Collection location_id(string $label = null) + * @method Show\Field|Collection business_name(string $label = null) + * @method Show\Field|Collection branch_name(string $label = null) + * @method Show\Field|Collection district(string $label = null) + * @method Show\Field|Collection longitude(string $label = null) + * @method Show\Field|Collection latitude(string $label = null) + * @method Show\Field|Collection telephone(string $label = null) + * @method Show\Field|Collection photo_list(string $label = null) + * @method Show\Field|Collection avg_price(string $label = null) + * @method Show\Field|Collection open_time(string $label = null) + * @method Show\Field|Collection recommend(string $label = null) + * @method Show\Field|Collection special(string $label = null) + * @method Show\Field|Collection offset_type(string $label = null) + * @method Show\Field|Collection multiid(string $label = null) + * @method Show\Field|Collection do(string $label = null) + * @method Show\Field|Collection start1(string $label = null) + * @method Show\Field|Collection end1(string $label = null) + * @method Show\Field|Collection start2(string $label = null) + * @method Show\Field|Collection end2(string $label = null) + * @method Show\Field|Collection intro(string $label = null) + * @method Show\Field|Collection difficulty(string $label = null) + * @method Show\Field|Collection cooking_time(string $label = null) + * @method Show\Field|Collection collection_num(string $label = null) + * @method Show\Field|Collection delete_time(string $label = null) + * @method Show\Field|Collection menu_id(string $label = null) + * @method Show\Field|Collection ingredients_id(string $label = null) + * @method Show\Field|Collection mediaid(string $label = null) + * @method Show\Field|Collection clerk_id(string $label = null) + * @method Show\Field|Collection clerk_type(string $label = null) + * @method Show\Field|Collection final_fee(string $label = null) + * @method Show\Field|Collection credit1(string $label = null) + * @method Show\Field|Collection credit1_fee(string $label = null) + * @method Show\Field|Collection credit2(string $label = null) + * @method Show\Field|Collection cash(string $label = null) + * @method Show\Field|Collection return_cash(string $label = null) + * @method Show\Field|Collection final_cash(string $label = null) + * @method Show\Field|Collection trade_type(string $label = null) + * @method Show\Field|Collection msgtype(string $label = null) + * @method Show\Field|Collection transid(string $label = null) + * @method Show\Field|Collection backtype(string $label = null) + * @method Show\Field|Collection credittype(string $label = null) + * @method Show\Field|Collection operator(string $label = null) + * @method Show\Field|Collection real_uniacid(string $label = null) + * @method Show\Field|Collection groups(string $label = null) + * @method Show\Field|Collection fanid(string $label = null) + * @method Show\Field|Collection subscribe(string $label = null) + * @method Show\Field|Collection language(string $label = null) + * @method Show\Field|Collection headimgurl(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 tagid_list(string $label = null) + * @method Show\Field|Collection subscribe_scene(string $label = null) + * @method Show\Field|Collection qr_scene_str(string $label = null) + * @method Show\Field|Collection qr_scene(string $label = null) + * @method Show\Field|Collection tagid(string $label = null) + * @method Show\Field|Collection credit(string $label = null) + * @method Show\Field|Collection isdefault(string $label = null) + * @method Show\Field|Collection touid(string $label = null) + * @method Show\Field|Collection fromuid(string $label = null) + * @method Show\Field|Collection action(string $label = null) + * @method Show\Field|Collection credit_value(string $label = null) + * @method Show\Field|Collection follow(string $label = null) + * @method Show\Field|Collection followtime(string $label = null) + * @method Show\Field|Collection unfollowtime(string $label = null) + * @method Show\Field|Collection user_from(string $label = null) + * @method Show\Field|Collection centeruid(string $label = null) + * @method Show\Field|Collection groupname(string $label = null) + * @method Show\Field|Collection fansnum(string $label = null) + * @method Show\Field|Collection attach_id(string $label = null) + * @method Show\Field|Collection cron_id(string $label = null) + * @method Show\Field|Collection sendtime(string $label = null) + * @method Show\Field|Collection finalsendtime(string $label = null) + * @method Show\Field|Collection msg_id(string $label = null) + * @method Show\Field|Collection msg_data_id(string $label = null) + * @method Show\Field|Collection zipcode(string $label = null) + * @method Show\Field|Collection fieldid(string $label = null) + * @method Show\Field|Collection available(string $label = null) + * @method Show\Field|Collection property(string $label = null) + * @method Show\Field|Collection credit3(string $label = null) + * @method Show\Field|Collection credit4(string $label = null) + * @method Show\Field|Collection credit5(string $label = null) + * @method Show\Field|Collection credit6(string $label = null) + * @method Show\Field|Collection realname(string $label = null) + * @method Show\Field|Collection vip(string $label = null) + * @method Show\Field|Collection birthyear(string $label = null) + * @method Show\Field|Collection birthmonth(string $label = null) + * @method Show\Field|Collection constellation(string $label = null) + * @method Show\Field|Collection zodiac(string $label = null) + * @method Show\Field|Collection idcard(string $label = null) + * @method Show\Field|Collection studentid(string $label = null) + * @method Show\Field|Collection grade(string $label = null) + * @method Show\Field|Collection nationality(string $label = null) + * @method Show\Field|Collection resideprovince(string $label = null) + * @method Show\Field|Collection residecity(string $label = null) + * @method Show\Field|Collection residedist(string $label = null) + * @method Show\Field|Collection graduateschool(string $label = null) + * @method Show\Field|Collection company(string $label = null) + * @method Show\Field|Collection education(string $label = null) + * @method Show\Field|Collection occupation(string $label = null) + * @method Show\Field|Collection revenue(string $label = null) + * @method Show\Field|Collection affectivestatus(string $label = null) + * @method Show\Field|Collection lookingfor(string $label = null) + * @method Show\Field|Collection bloodtype(string $label = null) + * @method Show\Field|Collection height(string $label = null) + * @method Show\Field|Collection weight(string $label = null) + * @method Show\Field|Collection alipay(string $label = null) + * @method Show\Field|Collection msn(string $label = null) + * @method Show\Field|Collection taobao(string $label = null) + * @method Show\Field|Collection site(string $label = null) + * @method Show\Field|Collection interest(string $label = null) + * @method Show\Field|Collection pay_password(string $label = null) + * @method Show\Field|Collection oauth_openid(string $label = null) + * @method Show\Field|Collection picmd5(string $label = null) + * @method Show\Field|Collection is_read(string $label = null) + * @method Show\Field|Collection migration_name(string $label = null) + * @method Show\Field|Collection breakpoint(string $label = null) + * @method Show\Field|Collection enabled(string $label = null) + * @method Show\Field|Collection ability(string $label = null) + * @method Show\Field|Collection settings(string $label = null) + * @method Show\Field|Collection subscribes(string $label = null) + * @method Show\Field|Collection handles(string $label = null) + * @method Show\Field|Collection isrulefields(string $label = null) + * @method Show\Field|Collection issystem(string $label = null) + * @method Show\Field|Collection target(string $label = null) + * @method Show\Field|Collection iscard(string $label = null) + * @method Show\Field|Collection title_initial(string $label = null) + * @method Show\Field|Collection wxapp_support(string $label = null) + * @method Show\Field|Collection welcome_support(string $label = null) + * @method Show\Field|Collection oauth_type(string $label = null) + * @method Show\Field|Collection webapp_support(string $label = null) + * @method Show\Field|Collection phoneapp_support(string $label = null) + * @method Show\Field|Collection account_support(string $label = null) + * @method Show\Field|Collection xzapp_support(string $label = null) + * @method Show\Field|Collection aliapp_support(string $label = null) + * @method Show\Field|Collection baiduapp_support(string $label = null) + * @method Show\Field|Collection toutiaoapp_support(string $label = null) + * @method Show\Field|Collection from(string $label = null) + * @method Show\Field|Collection cloud_record(string $label = null) + * @method Show\Field|Collection eid(string $label = null) + * @method Show\Field|Collection entry(string $label = null) + * @method Show\Field|Collection direct(string $label = null) + * @method Show\Field|Collection multilevel(string $label = null) + * @method Show\Field|Collection parent(string $label = null) + * @method Show\Field|Collection install_status(string $label = null) + * @method Show\Field|Collection main_module_name(string $label = null) + * @method Show\Field|Collection main_module_logo(string $label = null) + * @method Show\Field|Collection has_new_version(string $label = null) + * @method Show\Field|Collection has_new_branch(string $label = null) + * @method Show\Field|Collection is_ban(string $label = null) + * @method Show\Field|Collection lastupdatetime(string $label = null) + * @method Show\Field|Collection cloud_id(string $label = null) + * @method Show\Field|Collection buytime(string $label = null) + * @method Show\Field|Collection module_status(string $label = null) + * @method Show\Field|Collection main_module(string $label = null) + * @method Show\Field|Collection rank(string $label = null) + * @method Show\Field|Collection plugin_name(string $label = null) + * @method Show\Field|Collection module_name(string $label = null) + * @method Show\Field|Collection hqurl(string $label = null) + * @method Show\Field|Collection parent_id(string $label = null) + * @method Show\Field|Collection incontent(string $label = null) + * @method Show\Field|Collection modules(string $label = null) + * @method Show\Field|Collection required(string $label = null) + * @method Show\Field|Collection unchangeable(string $label = null) + * @method Show\Field|Collection showinregister(string $label = null) + * @method Show\Field|Collection field_length(string $label = null) + * @method Show\Field|Collection qrcid(string $label = null) + * @method Show\Field|Collection scene_str(string $label = null) + * @method Show\Field|Collection ticket(string $label = null) + * @method Show\Field|Collection expire(string $label = null) + * @method Show\Field|Collection subnum(string $label = null) + * @method Show\Field|Collection containtype(string $label = null) + * @method Show\Field|Collection kid(string $label = null) + * @method Show\Field|Collection iscommend(string $label = null) + * @method Show\Field|Collection ishot(string $label = null) + * @method Show\Field|Collection pcate(string $label = null) + * @method Show\Field|Collection ccate(string $label = null) + * @method Show\Field|Collection template(string $label = null) + * @method Show\Field|Collection linkurl(string $label = null) + * @method Show\Field|Collection edittime(string $label = null) + * @method Show\Field|Collection iscomment(string $label = null) + * @method Show\Field|Collection nid(string $label = null) + * @method Show\Field|Collection ishomepage(string $label = null) + * @method Show\Field|Collection icontype(string $label = null) + * @method Show\Field|Collection css(string $label = null) + * @method Show\Field|Collection site_info(string $label = null) + * @method Show\Field|Collection bindhost(string $label = null) + * @method Show\Field|Collection section(string $label = null) + * @method Show\Field|Collection categoryid(string $label = null) + * @method Show\Field|Collection html(string $label = null) + * @method Show\Field|Collection multipage(string $label = null) + * @method Show\Field|Collection goodnum(string $label = null) + * @method Show\Field|Collection founder_uid(string $label = null) + * @method Show\Field|Collection amount(string $label = null) + * @method Show\Field|Collection order_amount(string $label = null) + * @method Show\Field|Collection cash_log_id(string $label = null) + * @method Show\Field|Collection account_num(string $label = null) + * @method Show\Field|Collection wxapp_num(string $label = null) + * @method Show\Field|Collection unit(string $label = null) + * @method Show\Field|Collection slide(string $label = null) + * @method Show\Field|Collection synopsis(string $label = null) + * @method Show\Field|Collection module_group(string $label = null) + * @method Show\Field|Collection api_num(string $label = null) + * @method Show\Field|Collection user_group_price(string $label = null) + * @method Show\Field|Collection user_group(string $label = null) + * @method Show\Field|Collection account_group(string $label = null) + * @method Show\Field|Collection platform_num(string $label = null) + * @method Show\Field|Collection aliapp_num(string $label = null) + * @method Show\Field|Collection baiduapp_num(string $label = null) + * @method Show\Field|Collection phoneapp_num(string $label = null) + * @method Show\Field|Collection toutiaoapp_num(string $label = null) + * @method Show\Field|Collection webapp_num(string $label = null) + * @method Show\Field|Collection xzapp_num(string $label = null) + * @method Show\Field|Collection wish_branch(string $label = null) + * @method Show\Field|Collection is_edited(string $label = null) + * @method Show\Field|Collection branchs(string $label = null) + * @method Show\Field|Collection orderid(string $label = null) + * @method Show\Field|Collection goodsid(string $label = null) + * @method Show\Field|Collection duration(string $label = null) + * @method Show\Field|Collection buyer(string $label = null) + * @method Show\Field|Collection buyerid(string $label = null) + * @method Show\Field|Collection changeprice(string $label = null) + * @method Show\Field|Collection wxapp(string $label = null) + * @method Show\Field|Collection templateid(string $label = null) + * @method Show\Field|Collection variable(string $label = null) + * @method Show\Field|Collection sections(string $label = null) + * @method Show\Field|Collection new(string $label = null) + * @method Show\Field|Collection cancel(string $label = null) + * @method Show\Field|Collection cumulate(string $label = null) + * @method Show\Field|Collection date(string $label = null) + * @method Show\Field|Collection hit(string $label = null) + * @method Show\Field|Collection count(string $label = null) + * @method Show\Field|Collection ip_count(string $label = null) + * @method Show\Field|Collection full_amount(string $label = null) + * @method Show\Field|Collection discounts(string $label = null) + * @method Show\Field|Collection is_new_user(string $label = null) + * @method Show\Field|Collection inventory_use(string $label = null) + * @method Show\Field|Collection storetype_id(string $label = null) + * @method Show\Field|Collection active_type(string $label = null) + * @method Show\Field|Collection usable_number(string $label = null) + * @method Show\Field|Collection usable_start_time(string $label = null) + * @method Show\Field|Collection usable_end_time(string $label = null) + * @method Show\Field|Collection add_user_id(string $label = null) + * @method Show\Field|Collection update_user_id(string $label = null) + * @method Show\Field|Collection discount_type(string $label = null) + * @method Show\Field|Collection system_coupon_user_id(string $label = null) + * @method Show\Field|Collection receive_time(string $label = null) + * @method Show\Field|Collection number_remain(string $label = null) + * @method Show\Field|Collection receive_type(string $label = null) + * @method Show\Field|Collection one_receive_number(string $label = null) + * @method Show\Field|Collection user_receive_id(string $label = null) + * @method Show\Field|Collection system_coupon_id(string $label = null) + * @method Show\Field|Collection use_time(string $label = null) + * @method Show\Field|Collection return_time(string $label = null) + * @method Show\Field|Collection default_acid(string $label = null) + * @method Show\Field|Collection menuid(string $label = null) + * @method Show\Field|Collection client_platform_type(string $label = null) + * @method Show\Field|Collection shortcut(string $label = null) + * @method Show\Field|Collection version_id(string $label = null) + * @method Show\Field|Collection owner_uid(string $label = null) + * @method Show\Field|Collection templates(string $label = null) + * @method Show\Field|Collection link_uniacid(string $label = null) + * @method Show\Field|Collection passport(string $label = null) + * @method Show\Field|Collection oauth(string $label = null) + * @method Show\Field|Collection jsauth_acid(string $label = null) + * @method Show\Field|Collection notify(string $label = null) + * @method Show\Field|Collection creditnames(string $label = null) + * @method Show\Field|Collection creditbehaviors(string $label = null) + * @method Show\Field|Collection welcome(string $label = null) + * @method Show\Field|Collection default(string $label = null) + * @method Show\Field|Collection default_message(string $label = null) + * @method Show\Field|Collection payment(string $label = null) + * @method Show\Field|Collection stat(string $label = null) + * @method Show\Field|Collection default_site(string $label = null) + * @method Show\Field|Collection sync(string $label = null) + * @method Show\Field|Collection recharge(string $label = null) + * @method Show\Field|Collection tplnotice(string $label = null) + * @method Show\Field|Collection grouplevel(string $label = null) + * @method Show\Field|Collection mcplugin(string $label = null) + * @method Show\Field|Collection exchange_enable(string $label = null) + * @method Show\Field|Collection coupon_type(string $label = null) + * @method Show\Field|Collection menuset(string $label = null) + * @method Show\Field|Collection statistics(string $label = null) + * @method Show\Field|Collection bind_domain(string $label = null) + * @method Show\Field|Collection comment_status(string $label = null) + * @method Show\Field|Collection reply_setting(string $label = null) + * @method Show\Field|Collection default_module(string $label = null) + * @method Show\Field|Collection attachment_limit(string $label = null) + * @method Show\Field|Collection attachment_size(string $label = null) + * @method Show\Field|Collection sync_member(string $label = null) + * @method Show\Field|Collection remote(string $label = null) + * @method Show\Field|Collection receiver(string $label = null) + * @method Show\Field|Collection verifycode(string $label = null) + * @method Show\Field|Collection failed_count(string $label = null) + * @method Show\Field|Collection apiurl(string $label = null) + * @method Show\Field|Collection default_text(string $label = null) + * @method Show\Field|Collection cachetime(string $label = null) + * @method Show\Field|Collection founder_groupid(string $label = null) + * @method Show\Field|Collection joindate(string $label = null) + * @method Show\Field|Collection starttime(string $label = null) + * @method Show\Field|Collection register_type(string $label = null) + * @method Show\Field|Collection welcome_link(string $label = null) + * @method Show\Field|Collection notice_setting(string $label = null) + * @method Show\Field|Collection is_bind(string $label = null) + * @method Show\Field|Collection user_category(string $label = null) + * @method Show\Field|Collection token_expire(string $label = null) + * @method Show\Field|Collection bind_sign(string $label = null) + * @method Show\Field|Collection third_type(string $label = null) + * @method Show\Field|Collection third_nickname(string $label = null) + * @method Show\Field|Collection maxaccount(string $label = null) + * @method Show\Field|Collection maxwxapp(string $label = null) + * @method Show\Field|Collection maxwebapp(string $label = null) + * @method Show\Field|Collection maxphoneapp(string $label = null) + * @method Show\Field|Collection maxxzapp(string $label = null) + * @method Show\Field|Collection maxaliapp(string $label = null) + * @method Show\Field|Collection maxbaiduapp(string $label = null) + * @method Show\Field|Collection maxtoutiaoapp(string $label = null) + * @method Show\Field|Collection uni_group_id(string $label = null) + * @method Show\Field|Collection create_group_id(string $label = null) + * @method Show\Field|Collection timelimit(string $label = null) + * @method Show\Field|Collection package(string $label = null) + * @method Show\Field|Collection users_group_id(string $label = null) + * @method Show\Field|Collection inviteuid(string $label = null) + * @method Show\Field|Collection login_at(string $label = null) + * @method Show\Field|Collection fakeid(string $label = null) + * @method Show\Field|Collection workerid(string $label = null) + * @method Show\Field|Collection is_send_mobile_status(string $label = null) + * @method Show\Field|Collection send_expire_status(string $label = null) + * @method Show\Field|Collection width(string $label = null) + * @method Show\Field|Collection thumb_media_id(string $label = null) + * @method Show\Field|Collection thumb_url(string $label = null) + * @method Show\Field|Collection digest(string $label = null) + * @method Show\Field|Collection content_source_url(string $label = null) + * @method Show\Field|Collection show_cover_pic(string $label = null) + * @method Show\Field|Collection need_open_comment(string $label = null) + * @method Show\Field|Collection only_fans_can_comment(string $label = null) + * @method Show\Field|Collection session_cnt(string $label = null) + * @method Show\Field|Collection visit_pv(string $label = null) + * @method Show\Field|Collection visit_uv(string $label = null) + * @method Show\Field|Collection visit_uv_new(string $label = null) + * @method Show\Field|Collection stay_time_uv(string $label = null) + * @method Show\Field|Collection stay_time_session(string $label = null) + * @method Show\Field|Collection visit_depth(string $label = null) + * @method Show\Field|Collection ref_date(string $label = null) + * @method Show\Field|Collection design_method(string $label = null) + * @method Show\Field|Collection quickmenu(string $label = null) + * @method Show\Field|Collection entry_id(string $label = null) + * @method Show\Field|Collection appjson(string $label = null) + * @method Show\Field|Collection default_appjson(string $label = null) + * @method Show\Field|Collection use_default(string $label = null) + * @method Show\Field|Collection last_modules(string $label = null) + * @method Show\Field|Collection tominiprogram(string $label = null) + * @method Show\Field|Collection upload_time(string $label = null) + * @method Show\Field|Collection cid(string $label = null) + * @method Show\Field|Collection brand_name(string $label = null) + * @method Show\Field|Collection logo_url(string $label = null) + * @method Show\Field|Collection success(string $label = null) + * @method Show\Field|Collection error(string $label = null) + * @method Show\Field|Collection c_attitude(string $label = null) + * @method Show\Field|Collection c_service(string $label = null) + * @method Show\Field|Collection c_quality(string $label = null) + * @method Show\Field|Collection c_average(string $label = null) + * @method Show\Field|Collection service_personnel_id(string $label = null) + * @method Show\Field|Collection user_created_at(string $label = null) + * @method Show\Field|Collection qr_url(string $label = null) + * @method Show\Field|Collection head_url(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 order(string $label = null) + * @method Show\Field|Collection uri(string $label = null) + * @method Show\Field|Collection permission_id(string $label = null) + * @method Show\Field|Collection http_method(string $label = null) + * @method Show\Field|Collection http_path(string $label = null) + * @method Show\Field|Collection role_id(string $label = null) + * @method Show\Field|Collection remember_token(string $label = null) + * @method Show\Field|Collection migration(string $label = null) + * @method Show\Field|Collection batch(string $label = null) + * @method Show\Field|Collection email_verified_at(string $label = null) + */ + class Show {} + + /** + * @method \Dcat\Admin\Form\Field\Button button(...$params) + */ + class Form {} + +} + +namespace Dcat\Admin\Grid { + /** + + */ + class Column {} + + /** + + */ + class Filter {} +} + +namespace Dcat\Admin\Show { + /** + + */ + class Field {} +}