2 Star 0 Fork 0

chenyuanjian/CommunityGroup

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dcat_admin_ide_helper.php 62.65 KB
一键复制 编辑 原始数据 按行查看 历史
吕佰阳 提交于 2022-11-04 07:56 . lvbaiyang
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065
<?php
/**
* A helper file for Dcat Admin, to provide autocomplete information to your IDE
*
* This file should not be included in your code, only analyzed by your IDE!
*
* @author jqh <841324345@qq.com>
*/
namespace Dcat\Admin {
use Illuminate\Support\Collection;
/**
* @property Grid\Column|Collection id
* @property Grid\Column|Collection created_at
* @property Grid\Column|Collection updated_at
* @property Grid\Column|Collection detail
* @property Grid\Column|Collection banner
* @property Grid\Column|Collection name
* @property Grid\Column|Collection type
* @property Grid\Column|Collection version
* @property Grid\Column|Collection logo
* @property Grid\Column|Collection home_page
* @property Grid\Column|Collection zip_url
* @property Grid\Column|Collection is_enabled
* @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection order
* @property Grid\Column|Collection icon
* @property Grid\Column|Collection uri
* @property Grid\Column|Collection extension
* @property Grid\Column|Collection permission_id
* @property Grid\Column|Collection menu_id
* @property Grid\Column|Collection slug
* @property Grid\Column|Collection http_method
* @property Grid\Column|Collection http_path
* @property Grid\Column|Collection role_id
* @property Grid\Column|Collection user_id
* @property Grid\Column|Collection value
* @property Grid\Column|Collection username
* @property Grid\Column|Collection password
* @property Grid\Column|Collection avatar
* @property Grid\Column|Collection remember_token
* @property Grid\Column|Collection coupon_id
* @property Grid\Column|Collection uid
* @property Grid\Column|Collection consume_coupon
* @property Grid\Column|Collection convertibility_time
* @property Grid\Column|Collection deleted_at
* @property Grid\Column|Collection coupon_goods_name
* @property Grid\Column|Collection coupon_goods_describe
* @property Grid\Column|Collection coupon_price
* @property Grid\Column|Collection coupon_state
* @property Grid\Column|Collection coupon_goods_logo
* @property Grid\Column|Collection discount_id
* @property Grid\Column|Collection discount_count
* @property Grid\Column|Collection discount_start
* @property Grid\Column|Collection discount_end
* @property Grid\Column|Collection uuid
* @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 product_id
* @property Grid\Column|Collection goods_name
* @property Grid\Column|Collection goods_price
* @property Grid\Column|Collection goods_logo
* @property Grid\Column|Collection goods_type
* @property Grid\Column|Collection goods_desc
* @property Grid\Column|Collection goods_stock
* @property Grid\Column|Collection goods_status
* @property Grid\Column|Collection goods_sales
* @property Grid\Column|Collection goods_unit
* @property Grid\Column|Collection is_free_shipping
* @property Grid\Column|Collection is_hot
* @property Grid\Column|Collection comment_num
* @property Grid\Column|Collection collect_num
* @property Grid\Column|Collection spec_type
* @property Grid\Column|Collection sort
* @property Grid\Column|Collection goods_attr
* @property Grid\Column|Collection goods_id
* @property Grid\Column|Collection goods_bargain_min_price
* @property Grid\Column|Collection goods_bargain_user_number
* @property Grid\Column|Collection goods_bargain_help_user_number
* @property Grid\Column|Collection goods_bargain_success_user_number
* @property Grid\Column|Collection goods_bargain_limited
* @property Grid\Column|Collection goods_bargain_limited_remain
* @property Grid\Column|Collection goods_bargain_end_time
* @property Grid\Column|Collection goods_bargain_status
* @property Grid\Column|Collection goods_ids
* @property Grid\Column|Collection goods_bargain_image
* @property Grid\Column|Collection goods_bargain_name
* @property Grid\Column|Collection goods_bargain_price
* @property Grid\Column|Collection goods_bargain_residue_number
* @property Grid\Column|Collection goods_bargain_number
* @property Grid\Column|Collection goods_bargain_count
* @property Grid\Column|Collection goods_bargain_start_time
* @property Grid\Column|Collection uid_help_chop
* @property Grid\Column|Collection goods_sku
* @property Grid\Column|Collection goods_price_min
* @property Grid\Column|Collection goods_price_current
* @property Grid\Column|Collection goods_bargain_this_number
* @property Grid\Column|Collection goods_message
* @property Grid\Column|Collection goods_grade
* @property Grid\Column|Collection serve_grade
* @property Grid\Column|Collection grade_content
* @property Grid\Column|Collection reply
* @property Grid\Column|Collection evaluate_time
* @property Grid\Column|Collection discount_coupon_name
* @property Grid\Column|Collection discount_coupon_image
* @property Grid\Column|Collection classify_id
* @property Grid\Column|Collection satisfy_reduce
* @property Grid\Column|Collection practical_reduce
* @property Grid\Column|Collection discount_coupon_start
* @property Grid\Column|Collection discount_coupon_end
* @property Grid\Column|Collection status
* @property Grid\Column|Collection goods_title
* @property Grid\Column|Collection goods_info
* @property Grid\Column|Collection cost_price
* @property Grid\Column|Collection ot_price
* @property Grid\Column|Collection goods_postage
* @property Grid\Column|Collection start_time
* @property Grid\Column|Collection end_time
* @property Grid\Column|Collection is_postage
* @property Grid\Column|Collection max_seckill_num
* @property Grid\Column|Collection time_id
* @property Grid\Column|Collection once_num
* @property Grid\Column|Collection type_id
* @property Grid\Column|Collection spec_name
* @property Grid\Column|Collection value_ids
* @property Grid\Column|Collection value_name
* @property Grid\Column|Collection price
* @property Grid\Column|Collection stock
* @property Grid\Column|Collection stock_frozen
* @property Grid\Column|Collection spec_id
* @property Grid\Column|Collection spec_value
* @property Grid\Column|Collection type_name
* @property Grid\Column|Collection type_logo
* @property Grid\Column|Collection type_status
* @property Grid\Column|Collection pid
* @property Grid\Column|Collection is_show
* @property Grid\Column|Collection regimental_id
* @property Grid\Column|Collection group_id
* @property Grid\Column|Collection goods_image
* @property Grid\Column|Collection group_name
* @property Grid\Column|Collection original_cost
* @property Grid\Column|Collection group_price
* @property Grid\Column|Collection group_number
* @property Grid\Column|Collection limit_quantity
* @property Grid\Column|Collection residue_quantity
* @property Grid\Column|Collection stop_time
* @property Grid\Column|Collection group_state
* @property Grid\Column|Collection brokerage_price
* @property Grid\Column|Collection peoples
* @property Grid\Column|Collection group_image
* @property Grid\Column|Collection attempts
* @property Grid\Column|Collection reserved_at
* @property Grid\Column|Collection available_at
* @property Grid\Column|Collection live_id
* @property Grid\Column|Collection like_time
* @property Grid\Column|Collection live_goods_name
* @property Grid\Column|Collection live_goods_synopsis
* @property Grid\Column|Collection live_goods_image
* @property Grid\Column|Collection selling price
* @property Grid\Column|Collection goods_link
* @property Grid\Column|Collection direct_broadcasting_title
* @property Grid\Column|Collection direct_broadcasting_cover
* @property Grid\Column|Collection start_direct_broadcasting
* @property Grid\Column|Collection end_direct_broadcasting
* @property Grid\Column|Collection push_url
* @property Grid\Column|Collection push_key
* @property Grid\Column|Collection live_url
* @property Grid\Column|Collection direct_broadcasting_state
* @property Grid\Column|Collection attention
* @property Grid\Column|Collection max_number_people
* @property Grid\Column|Collection insert_fans
* @property Grid\Column|Collection purchase_number_people
* @property Grid\Column|Collection trade_no
* @property Grid\Column|Collection order_sn
* @property Grid\Column|Collection order_status
* @property Grid\Column|Collection user_address
* @property Grid\Column|Collection user_phone
* @property Grid\Column|Collection order_type
* @property Grid\Column|Collection total_postage
* @property Grid\Column|Collection pay_status
* @property Grid\Column|Collection pay_type
* @property Grid\Column|Collection pay_time
* @property Grid\Column|Collection total_price
* @property Grid\Column|Collection total_num
* @property Grid\Column|Collection pay_price
* @property Grid\Column|Collection deduction_price
* @property Grid\Column|Collection tokenable_type
* @property Grid\Column|Collection tokenable_id
* @property Grid\Column|Collection token
* @property Grid\Column|Collection abilities
* @property Grid\Column|Collection last_used_at
* @property Grid\Column|Collection points
* @property Grid\Column|Collection points_type
* @property Grid\Column|Collection points_mode
* @property Grid\Column|Collection use_state
* @property Grid\Column|Collection order_number
* @property Grid\Column|Collection refund_reason
* @property Grid\Column|Collection audit_status
* @property Grid\Column|Collection refund_status
* @property Grid\Column|Collection audit_name
* @property Grid\Column|Collection audit_phone
* @property Grid\Column|Collection id_number
* @property Grid\Column|Collection audit_region
* @property Grid\Column|Collection audit_addre
* @property Grid\Column|Collection audit_uid
* @property Grid\Column|Collection audit_remark
* @property Grid\Column|Collection names
* @property Grid\Column|Collection brokerage_type
* @property Grid\Column|Collection settle_accounts
* @property Grid\Column|Collection grade_name
* @property Grid\Column|Collection grade_experience
* @property Grid\Column|Collection grade_ratio
* @property Grid\Column|Collection grade_status
* @property Grid\Column|Collection regimental_name
* @property Grid\Column|Collection regimental_phone
* @property Grid\Column|Collection regimental_city
* @property Grid\Column|Collection regimental_region
* @property Grid\Column|Collection regimental_plot
* @property Grid\Column|Collection regimental_address
* @property Grid\Column|Collection regimental_coordinate
* @property Grid\Column|Collection regimental_integral
* @property Grid\Column|Collection regimental_freight
* @property Grid\Column|Collection regimental_sale
* @property Grid\Column|Collection regimental_uid
* @property Grid\Column|Collection verification_id
* @property Grid\Column|Collection set_affiche
* @property Grid\Column|Collection set_start
* @property Grid\Column|Collection set_end
* @property Grid\Column|Collection set_coverage
* @property Grid\Column|Collection service_charge
* @property Grid\Column|Collection min_price
* @property Grid\Column|Collection brokerage
* @property Grid\Column|Collection path
* @property Grid\Column|Collection seckill_id
* @property Grid\Column|Collection duration_time
* @property Grid\Column|Collection scekill_status
* @property Grid\Column|Collection attr_name
* @property Grid\Column|Collection attr_type
* @property Grid\Column|Collection attr_value
* @property Grid\Column|Collection addre
* @property Grid\Column|Collection phone
* @property Grid\Column|Collection u_name
* @property Grid\Column|Collection update_at
* @property Grid\Column|Collection email
* @property Grid\Column|Collection email_verified_at
* @property Grid\Column|Collection member_name
* @property Grid\Column|Collection member_phone
* @property Grid\Column|Collection openid
* @property Grid\Column|Collection session_key
* @property Grid\Column|Collection user_password
* @property Grid\Column|Collection last_login
* @property Grid\Column|Collection last_login_mode
* @property Grid\Column|Collection user_name
* @property Grid\Column|Collection user_image
* @property Grid\Column|Collection user_integral
* @property Grid\Column|Collection user_residue_integral
* @property Grid\Column|Collection user_use_integral
* @property Grid\Column|Collection user_discount_coupon
* @property Grid\Column|Collection retroactive_card
* @property Grid\Column|Collection bankCard
* @property Grid\Column|Collection goods_bargai_number
* @property Grid\Column|Collection goods_bargain_surplus
* @property Grid\Column|Collection goods_bargai_end_time
*
* @method Grid\Column|Collection id(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 detail(string $label = null)
* @method Grid\Column|Collection banner(string $label = null)
* @method Grid\Column|Collection name(string $label = null)
* @method Grid\Column|Collection type(string $label = null)
* @method Grid\Column|Collection version(string $label = null)
* @method Grid\Column|Collection logo(string $label = null)
* @method Grid\Column|Collection home_page(string $label = null)
* @method Grid\Column|Collection zip_url(string $label = null)
* @method Grid\Column|Collection is_enabled(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection icon(string $label = null)
* @method Grid\Column|Collection uri(string $label = null)
* @method Grid\Column|Collection extension(string $label = null)
* @method Grid\Column|Collection permission_id(string $label = null)
* @method Grid\Column|Collection menu_id(string $label = null)
* @method Grid\Column|Collection slug(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 user_id(string $label = null)
* @method Grid\Column|Collection value(string $label = null)
* @method Grid\Column|Collection username(string $label = null)
* @method Grid\Column|Collection password(string $label = null)
* @method Grid\Column|Collection avatar(string $label = null)
* @method Grid\Column|Collection remember_token(string $label = null)
* @method Grid\Column|Collection coupon_id(string $label = null)
* @method Grid\Column|Collection uid(string $label = null)
* @method Grid\Column|Collection consume_coupon(string $label = null)
* @method Grid\Column|Collection convertibility_time(string $label = null)
* @method Grid\Column|Collection deleted_at(string $label = null)
* @method Grid\Column|Collection coupon_goods_name(string $label = null)
* @method Grid\Column|Collection coupon_goods_describe(string $label = null)
* @method Grid\Column|Collection coupon_price(string $label = null)
* @method Grid\Column|Collection coupon_state(string $label = null)
* @method Grid\Column|Collection coupon_goods_logo(string $label = null)
* @method Grid\Column|Collection discount_id(string $label = null)
* @method Grid\Column|Collection discount_count(string $label = null)
* @method Grid\Column|Collection discount_start(string $label = null)
* @method Grid\Column|Collection discount_end(string $label = null)
* @method Grid\Column|Collection uuid(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 product_id(string $label = null)
* @method Grid\Column|Collection goods_name(string $label = null)
* @method Grid\Column|Collection goods_price(string $label = null)
* @method Grid\Column|Collection goods_logo(string $label = null)
* @method Grid\Column|Collection goods_type(string $label = null)
* @method Grid\Column|Collection goods_desc(string $label = null)
* @method Grid\Column|Collection goods_stock(string $label = null)
* @method Grid\Column|Collection goods_status(string $label = null)
* @method Grid\Column|Collection goods_sales(string $label = null)
* @method Grid\Column|Collection goods_unit(string $label = null)
* @method Grid\Column|Collection is_free_shipping(string $label = null)
* @method Grid\Column|Collection is_hot(string $label = null)
* @method Grid\Column|Collection comment_num(string $label = null)
* @method Grid\Column|Collection collect_num(string $label = null)
* @method Grid\Column|Collection spec_type(string $label = null)
* @method Grid\Column|Collection sort(string $label = null)
* @method Grid\Column|Collection goods_attr(string $label = null)
* @method Grid\Column|Collection goods_id(string $label = null)
* @method Grid\Column|Collection goods_bargain_min_price(string $label = null)
* @method Grid\Column|Collection goods_bargain_user_number(string $label = null)
* @method Grid\Column|Collection goods_bargain_help_user_number(string $label = null)
* @method Grid\Column|Collection goods_bargain_success_user_number(string $label = null)
* @method Grid\Column|Collection goods_bargain_limited(string $label = null)
* @method Grid\Column|Collection goods_bargain_limited_remain(string $label = null)
* @method Grid\Column|Collection goods_bargain_end_time(string $label = null)
* @method Grid\Column|Collection goods_bargain_status(string $label = null)
* @method Grid\Column|Collection goods_ids(string $label = null)
* @method Grid\Column|Collection goods_bargain_image(string $label = null)
* @method Grid\Column|Collection goods_bargain_name(string $label = null)
* @method Grid\Column|Collection goods_bargain_price(string $label = null)
* @method Grid\Column|Collection goods_bargain_residue_number(string $label = null)
* @method Grid\Column|Collection goods_bargain_number(string $label = null)
* @method Grid\Column|Collection goods_bargain_count(string $label = null)
* @method Grid\Column|Collection goods_bargain_start_time(string $label = null)
* @method Grid\Column|Collection uid_help_chop(string $label = null)
* @method Grid\Column|Collection goods_sku(string $label = null)
* @method Grid\Column|Collection goods_price_min(string $label = null)
* @method Grid\Column|Collection goods_price_current(string $label = null)
* @method Grid\Column|Collection goods_bargain_this_number(string $label = null)
* @method Grid\Column|Collection goods_message(string $label = null)
* @method Grid\Column|Collection goods_grade(string $label = null)
* @method Grid\Column|Collection serve_grade(string $label = null)
* @method Grid\Column|Collection grade_content(string $label = null)
* @method Grid\Column|Collection reply(string $label = null)
* @method Grid\Column|Collection evaluate_time(string $label = null)
* @method Grid\Column|Collection discount_coupon_name(string $label = null)
* @method Grid\Column|Collection discount_coupon_image(string $label = null)
* @method Grid\Column|Collection classify_id(string $label = null)
* @method Grid\Column|Collection satisfy_reduce(string $label = null)
* @method Grid\Column|Collection practical_reduce(string $label = null)
* @method Grid\Column|Collection discount_coupon_start(string $label = null)
* @method Grid\Column|Collection discount_coupon_end(string $label = null)
* @method Grid\Column|Collection status(string $label = null)
* @method Grid\Column|Collection goods_title(string $label = null)
* @method Grid\Column|Collection goods_info(string $label = null)
* @method Grid\Column|Collection cost_price(string $label = null)
* @method Grid\Column|Collection ot_price(string $label = null)
* @method Grid\Column|Collection goods_postage(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 is_postage(string $label = null)
* @method Grid\Column|Collection max_seckill_num(string $label = null)
* @method Grid\Column|Collection time_id(string $label = null)
* @method Grid\Column|Collection once_num(string $label = null)
* @method Grid\Column|Collection type_id(string $label = null)
* @method Grid\Column|Collection spec_name(string $label = null)
* @method Grid\Column|Collection value_ids(string $label = null)
* @method Grid\Column|Collection value_name(string $label = null)
* @method Grid\Column|Collection price(string $label = null)
* @method Grid\Column|Collection stock(string $label = null)
* @method Grid\Column|Collection stock_frozen(string $label = null)
* @method Grid\Column|Collection spec_id(string $label = null)
* @method Grid\Column|Collection spec_value(string $label = null)
* @method Grid\Column|Collection type_name(string $label = null)
* @method Grid\Column|Collection type_logo(string $label = null)
* @method Grid\Column|Collection type_status(string $label = null)
* @method Grid\Column|Collection pid(string $label = null)
* @method Grid\Column|Collection is_show(string $label = null)
* @method Grid\Column|Collection regimental_id(string $label = null)
* @method Grid\Column|Collection group_id(string $label = null)
* @method Grid\Column|Collection goods_image(string $label = null)
* @method Grid\Column|Collection group_name(string $label = null)
* @method Grid\Column|Collection original_cost(string $label = null)
* @method Grid\Column|Collection group_price(string $label = null)
* @method Grid\Column|Collection group_number(string $label = null)
* @method Grid\Column|Collection limit_quantity(string $label = null)
* @method Grid\Column|Collection residue_quantity(string $label = null)
* @method Grid\Column|Collection stop_time(string $label = null)
* @method Grid\Column|Collection group_state(string $label = null)
* @method Grid\Column|Collection brokerage_price(string $label = null)
* @method Grid\Column|Collection peoples(string $label = null)
* @method Grid\Column|Collection group_image(string $label = null)
* @method Grid\Column|Collection attempts(string $label = null)
* @method Grid\Column|Collection reserved_at(string $label = null)
* @method Grid\Column|Collection available_at(string $label = null)
* @method Grid\Column|Collection live_id(string $label = null)
* @method Grid\Column|Collection like_time(string $label = null)
* @method Grid\Column|Collection live_goods_name(string $label = null)
* @method Grid\Column|Collection live_goods_synopsis(string $label = null)
* @method Grid\Column|Collection live_goods_image(string $label = null)
* @method Grid\Column|Collection selling price(string $label = null)
* @method Grid\Column|Collection goods_link(string $label = null)
* @method Grid\Column|Collection direct_broadcasting_title(string $label = null)
* @method Grid\Column|Collection direct_broadcasting_cover(string $label = null)
* @method Grid\Column|Collection start_direct_broadcasting(string $label = null)
* @method Grid\Column|Collection end_direct_broadcasting(string $label = null)
* @method Grid\Column|Collection push_url(string $label = null)
* @method Grid\Column|Collection push_key(string $label = null)
* @method Grid\Column|Collection live_url(string $label = null)
* @method Grid\Column|Collection direct_broadcasting_state(string $label = null)
* @method Grid\Column|Collection attention(string $label = null)
* @method Grid\Column|Collection max_number_people(string $label = null)
* @method Grid\Column|Collection insert_fans(string $label = null)
* @method Grid\Column|Collection purchase_number_people(string $label = null)
* @method Grid\Column|Collection trade_no(string $label = null)
* @method Grid\Column|Collection order_sn(string $label = null)
* @method Grid\Column|Collection order_status(string $label = null)
* @method Grid\Column|Collection user_address(string $label = null)
* @method Grid\Column|Collection user_phone(string $label = null)
* @method Grid\Column|Collection order_type(string $label = null)
* @method Grid\Column|Collection total_postage(string $label = null)
* @method Grid\Column|Collection pay_status(string $label = null)
* @method Grid\Column|Collection pay_type(string $label = null)
* @method Grid\Column|Collection pay_time(string $label = null)
* @method Grid\Column|Collection total_price(string $label = null)
* @method Grid\Column|Collection total_num(string $label = null)
* @method Grid\Column|Collection pay_price(string $label = null)
* @method Grid\Column|Collection deduction_price(string $label = null)
* @method Grid\Column|Collection tokenable_type(string $label = null)
* @method Grid\Column|Collection tokenable_id(string $label = null)
* @method Grid\Column|Collection token(string $label = null)
* @method Grid\Column|Collection abilities(string $label = null)
* @method Grid\Column|Collection last_used_at(string $label = null)
* @method Grid\Column|Collection points(string $label = null)
* @method Grid\Column|Collection points_type(string $label = null)
* @method Grid\Column|Collection points_mode(string $label = null)
* @method Grid\Column|Collection use_state(string $label = null)
* @method Grid\Column|Collection order_number(string $label = null)
* @method Grid\Column|Collection refund_reason(string $label = null)
* @method Grid\Column|Collection audit_status(string $label = null)
* @method Grid\Column|Collection refund_status(string $label = null)
* @method Grid\Column|Collection audit_name(string $label = null)
* @method Grid\Column|Collection audit_phone(string $label = null)
* @method Grid\Column|Collection id_number(string $label = null)
* @method Grid\Column|Collection audit_region(string $label = null)
* @method Grid\Column|Collection audit_addre(string $label = null)
* @method Grid\Column|Collection audit_uid(string $label = null)
* @method Grid\Column|Collection audit_remark(string $label = null)
* @method Grid\Column|Collection names(string $label = null)
* @method Grid\Column|Collection brokerage_type(string $label = null)
* @method Grid\Column|Collection settle_accounts(string $label = null)
* @method Grid\Column|Collection grade_name(string $label = null)
* @method Grid\Column|Collection grade_experience(string $label = null)
* @method Grid\Column|Collection grade_ratio(string $label = null)
* @method Grid\Column|Collection grade_status(string $label = null)
* @method Grid\Column|Collection regimental_name(string $label = null)
* @method Grid\Column|Collection regimental_phone(string $label = null)
* @method Grid\Column|Collection regimental_city(string $label = null)
* @method Grid\Column|Collection regimental_region(string $label = null)
* @method Grid\Column|Collection regimental_plot(string $label = null)
* @method Grid\Column|Collection regimental_address(string $label = null)
* @method Grid\Column|Collection regimental_coordinate(string $label = null)
* @method Grid\Column|Collection regimental_integral(string $label = null)
* @method Grid\Column|Collection regimental_freight(string $label = null)
* @method Grid\Column|Collection regimental_sale(string $label = null)
* @method Grid\Column|Collection regimental_uid(string $label = null)
* @method Grid\Column|Collection verification_id(string $label = null)
* @method Grid\Column|Collection set_affiche(string $label = null)
* @method Grid\Column|Collection set_start(string $label = null)
* @method Grid\Column|Collection set_end(string $label = null)
* @method Grid\Column|Collection set_coverage(string $label = null)
* @method Grid\Column|Collection service_charge(string $label = null)
* @method Grid\Column|Collection min_price(string $label = null)
* @method Grid\Column|Collection brokerage(string $label = null)
* @method Grid\Column|Collection path(string $label = null)
* @method Grid\Column|Collection seckill_id(string $label = null)
* @method Grid\Column|Collection duration_time(string $label = null)
* @method Grid\Column|Collection scekill_status(string $label = null)
* @method Grid\Column|Collection attr_name(string $label = null)
* @method Grid\Column|Collection attr_type(string $label = null)
* @method Grid\Column|Collection attr_value(string $label = null)
* @method Grid\Column|Collection addre(string $label = null)
* @method Grid\Column|Collection phone(string $label = null)
* @method Grid\Column|Collection u_name(string $label = null)
* @method Grid\Column|Collection update_at(string $label = null)
* @method Grid\Column|Collection email(string $label = null)
* @method Grid\Column|Collection email_verified_at(string $label = null)
* @method Grid\Column|Collection member_name(string $label = null)
* @method Grid\Column|Collection member_phone(string $label = null)
* @method Grid\Column|Collection openid(string $label = null)
* @method Grid\Column|Collection session_key(string $label = null)
* @method Grid\Column|Collection user_password(string $label = null)
* @method Grid\Column|Collection last_login(string $label = null)
* @method Grid\Column|Collection last_login_mode(string $label = null)
* @method Grid\Column|Collection user_name(string $label = null)
* @method Grid\Column|Collection user_image(string $label = null)
* @method Grid\Column|Collection user_integral(string $label = null)
* @method Grid\Column|Collection user_residue_integral(string $label = null)
* @method Grid\Column|Collection user_use_integral(string $label = null)
* @method Grid\Column|Collection user_discount_coupon(string $label = null)
* @method Grid\Column|Collection retroactive_card(string $label = null)
* @method Grid\Column|Collection bankCard(string $label = null)
* @method Grid\Column|Collection goods_bargai_number(string $label = null)
* @method Grid\Column|Collection goods_bargain_surplus(string $label = null)
* @method Grid\Column|Collection goods_bargai_end_time(string $label = null)
*/
class Grid {}
class MiniGrid extends Grid {}
/**
* @property Show\Field|Collection id
* @property Show\Field|Collection created_at
* @property Show\Field|Collection updated_at
* @property Show\Field|Collection detail
* @property Show\Field|Collection banner
* @property Show\Field|Collection name
* @property Show\Field|Collection type
* @property Show\Field|Collection version
* @property Show\Field|Collection logo
* @property Show\Field|Collection home_page
* @property Show\Field|Collection zip_url
* @property Show\Field|Collection is_enabled
* @property Show\Field|Collection parent_id
* @property Show\Field|Collection order
* @property Show\Field|Collection icon
* @property Show\Field|Collection uri
* @property Show\Field|Collection extension
* @property Show\Field|Collection permission_id
* @property Show\Field|Collection menu_id
* @property Show\Field|Collection slug
* @property Show\Field|Collection http_method
* @property Show\Field|Collection http_path
* @property Show\Field|Collection role_id
* @property Show\Field|Collection user_id
* @property Show\Field|Collection value
* @property Show\Field|Collection username
* @property Show\Field|Collection password
* @property Show\Field|Collection avatar
* @property Show\Field|Collection remember_token
* @property Show\Field|Collection coupon_id
* @property Show\Field|Collection uid
* @property Show\Field|Collection consume_coupon
* @property Show\Field|Collection convertibility_time
* @property Show\Field|Collection deleted_at
* @property Show\Field|Collection coupon_goods_name
* @property Show\Field|Collection coupon_goods_describe
* @property Show\Field|Collection coupon_price
* @property Show\Field|Collection coupon_state
* @property Show\Field|Collection coupon_goods_logo
* @property Show\Field|Collection discount_id
* @property Show\Field|Collection discount_count
* @property Show\Field|Collection discount_start
* @property Show\Field|Collection discount_end
* @property Show\Field|Collection uuid
* @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 product_id
* @property Show\Field|Collection goods_name
* @property Show\Field|Collection goods_price
* @property Show\Field|Collection goods_logo
* @property Show\Field|Collection goods_type
* @property Show\Field|Collection goods_desc
* @property Show\Field|Collection goods_stock
* @property Show\Field|Collection goods_status
* @property Show\Field|Collection goods_sales
* @property Show\Field|Collection goods_unit
* @property Show\Field|Collection is_free_shipping
* @property Show\Field|Collection is_hot
* @property Show\Field|Collection comment_num
* @property Show\Field|Collection collect_num
* @property Show\Field|Collection spec_type
* @property Show\Field|Collection sort
* @property Show\Field|Collection goods_attr
* @property Show\Field|Collection goods_id
* @property Show\Field|Collection goods_bargain_min_price
* @property Show\Field|Collection goods_bargain_user_number
* @property Show\Field|Collection goods_bargain_help_user_number
* @property Show\Field|Collection goods_bargain_success_user_number
* @property Show\Field|Collection goods_bargain_limited
* @property Show\Field|Collection goods_bargain_limited_remain
* @property Show\Field|Collection goods_bargain_end_time
* @property Show\Field|Collection goods_bargain_status
* @property Show\Field|Collection goods_ids
* @property Show\Field|Collection goods_bargain_image
* @property Show\Field|Collection goods_bargain_name
* @property Show\Field|Collection goods_bargain_price
* @property Show\Field|Collection goods_bargain_residue_number
* @property Show\Field|Collection goods_bargain_number
* @property Show\Field|Collection goods_bargain_count
* @property Show\Field|Collection goods_bargain_start_time
* @property Show\Field|Collection uid_help_chop
* @property Show\Field|Collection goods_sku
* @property Show\Field|Collection goods_price_min
* @property Show\Field|Collection goods_price_current
* @property Show\Field|Collection goods_bargain_this_number
* @property Show\Field|Collection goods_message
* @property Show\Field|Collection goods_grade
* @property Show\Field|Collection serve_grade
* @property Show\Field|Collection grade_content
* @property Show\Field|Collection reply
* @property Show\Field|Collection evaluate_time
* @property Show\Field|Collection discount_coupon_name
* @property Show\Field|Collection discount_coupon_image
* @property Show\Field|Collection classify_id
* @property Show\Field|Collection satisfy_reduce
* @property Show\Field|Collection practical_reduce
* @property Show\Field|Collection discount_coupon_start
* @property Show\Field|Collection discount_coupon_end
* @property Show\Field|Collection status
* @property Show\Field|Collection goods_title
* @property Show\Field|Collection goods_info
* @property Show\Field|Collection cost_price
* @property Show\Field|Collection ot_price
* @property Show\Field|Collection goods_postage
* @property Show\Field|Collection start_time
* @property Show\Field|Collection end_time
* @property Show\Field|Collection is_postage
* @property Show\Field|Collection max_seckill_num
* @property Show\Field|Collection time_id
* @property Show\Field|Collection once_num
* @property Show\Field|Collection type_id
* @property Show\Field|Collection spec_name
* @property Show\Field|Collection value_ids
* @property Show\Field|Collection value_name
* @property Show\Field|Collection price
* @property Show\Field|Collection stock
* @property Show\Field|Collection stock_frozen
* @property Show\Field|Collection spec_id
* @property Show\Field|Collection spec_value
* @property Show\Field|Collection type_name
* @property Show\Field|Collection type_logo
* @property Show\Field|Collection type_status
* @property Show\Field|Collection pid
* @property Show\Field|Collection is_show
* @property Show\Field|Collection regimental_id
* @property Show\Field|Collection group_id
* @property Show\Field|Collection goods_image
* @property Show\Field|Collection group_name
* @property Show\Field|Collection original_cost
* @property Show\Field|Collection group_price
* @property Show\Field|Collection group_number
* @property Show\Field|Collection limit_quantity
* @property Show\Field|Collection residue_quantity
* @property Show\Field|Collection stop_time
* @property Show\Field|Collection group_state
* @property Show\Field|Collection brokerage_price
* @property Show\Field|Collection peoples
* @property Show\Field|Collection group_image
* @property Show\Field|Collection attempts
* @property Show\Field|Collection reserved_at
* @property Show\Field|Collection available_at
* @property Show\Field|Collection live_id
* @property Show\Field|Collection like_time
* @property Show\Field|Collection live_goods_name
* @property Show\Field|Collection live_goods_synopsis
* @property Show\Field|Collection live_goods_image
* @property Show\Field|Collection selling price
* @property Show\Field|Collection goods_link
* @property Show\Field|Collection direct_broadcasting_title
* @property Show\Field|Collection direct_broadcasting_cover
* @property Show\Field|Collection start_direct_broadcasting
* @property Show\Field|Collection end_direct_broadcasting
* @property Show\Field|Collection push_url
* @property Show\Field|Collection push_key
* @property Show\Field|Collection live_url
* @property Show\Field|Collection direct_broadcasting_state
* @property Show\Field|Collection attention
* @property Show\Field|Collection max_number_people
* @property Show\Field|Collection insert_fans
* @property Show\Field|Collection purchase_number_people
* @property Show\Field|Collection trade_no
* @property Show\Field|Collection order_sn
* @property Show\Field|Collection order_status
* @property Show\Field|Collection user_address
* @property Show\Field|Collection user_phone
* @property Show\Field|Collection order_type
* @property Show\Field|Collection total_postage
* @property Show\Field|Collection pay_status
* @property Show\Field|Collection pay_type
* @property Show\Field|Collection pay_time
* @property Show\Field|Collection total_price
* @property Show\Field|Collection total_num
* @property Show\Field|Collection pay_price
* @property Show\Field|Collection deduction_price
* @property Show\Field|Collection tokenable_type
* @property Show\Field|Collection tokenable_id
* @property Show\Field|Collection token
* @property Show\Field|Collection abilities
* @property Show\Field|Collection last_used_at
* @property Show\Field|Collection points
* @property Show\Field|Collection points_type
* @property Show\Field|Collection points_mode
* @property Show\Field|Collection use_state
* @property Show\Field|Collection order_number
* @property Show\Field|Collection refund_reason
* @property Show\Field|Collection audit_status
* @property Show\Field|Collection refund_status
* @property Show\Field|Collection audit_name
* @property Show\Field|Collection audit_phone
* @property Show\Field|Collection id_number
* @property Show\Field|Collection audit_region
* @property Show\Field|Collection audit_addre
* @property Show\Field|Collection audit_uid
* @property Show\Field|Collection audit_remark
* @property Show\Field|Collection names
* @property Show\Field|Collection brokerage_type
* @property Show\Field|Collection settle_accounts
* @property Show\Field|Collection grade_name
* @property Show\Field|Collection grade_experience
* @property Show\Field|Collection grade_ratio
* @property Show\Field|Collection grade_status
* @property Show\Field|Collection regimental_name
* @property Show\Field|Collection regimental_phone
* @property Show\Field|Collection regimental_city
* @property Show\Field|Collection regimental_region
* @property Show\Field|Collection regimental_plot
* @property Show\Field|Collection regimental_address
* @property Show\Field|Collection regimental_coordinate
* @property Show\Field|Collection regimental_integral
* @property Show\Field|Collection regimental_freight
* @property Show\Field|Collection regimental_sale
* @property Show\Field|Collection regimental_uid
* @property Show\Field|Collection verification_id
* @property Show\Field|Collection set_affiche
* @property Show\Field|Collection set_start
* @property Show\Field|Collection set_end
* @property Show\Field|Collection set_coverage
* @property Show\Field|Collection service_charge
* @property Show\Field|Collection min_price
* @property Show\Field|Collection brokerage
* @property Show\Field|Collection path
* @property Show\Field|Collection seckill_id
* @property Show\Field|Collection duration_time
* @property Show\Field|Collection scekill_status
* @property Show\Field|Collection attr_name
* @property Show\Field|Collection attr_type
* @property Show\Field|Collection attr_value
* @property Show\Field|Collection addre
* @property Show\Field|Collection phone
* @property Show\Field|Collection u_name
* @property Show\Field|Collection update_at
* @property Show\Field|Collection email
* @property Show\Field|Collection email_verified_at
* @property Show\Field|Collection member_name
* @property Show\Field|Collection member_phone
* @property Show\Field|Collection openid
* @property Show\Field|Collection session_key
* @property Show\Field|Collection user_password
* @property Show\Field|Collection last_login
* @property Show\Field|Collection last_login_mode
* @property Show\Field|Collection user_name
* @property Show\Field|Collection user_image
* @property Show\Field|Collection user_integral
* @property Show\Field|Collection user_residue_integral
* @property Show\Field|Collection user_use_integral
* @property Show\Field|Collection user_discount_coupon
* @property Show\Field|Collection retroactive_card
* @property Show\Field|Collection bankCard
* @property Show\Field|Collection goods_bargai_number
* @property Show\Field|Collection goods_bargain_surplus
* @property Show\Field|Collection goods_bargai_end_time
*
* @method Show\Field|Collection id(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 detail(string $label = null)
* @method Show\Field|Collection banner(string $label = null)
* @method Show\Field|Collection name(string $label = null)
* @method Show\Field|Collection type(string $label = null)
* @method Show\Field|Collection version(string $label = null)
* @method Show\Field|Collection logo(string $label = null)
* @method Show\Field|Collection home_page(string $label = null)
* @method Show\Field|Collection zip_url(string $label = null)
* @method Show\Field|Collection is_enabled(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection icon(string $label = null)
* @method Show\Field|Collection uri(string $label = null)
* @method Show\Field|Collection extension(string $label = null)
* @method Show\Field|Collection permission_id(string $label = null)
* @method Show\Field|Collection menu_id(string $label = null)
* @method Show\Field|Collection slug(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 user_id(string $label = null)
* @method Show\Field|Collection value(string $label = null)
* @method Show\Field|Collection username(string $label = null)
* @method Show\Field|Collection password(string $label = null)
* @method Show\Field|Collection avatar(string $label = null)
* @method Show\Field|Collection remember_token(string $label = null)
* @method Show\Field|Collection coupon_id(string $label = null)
* @method Show\Field|Collection uid(string $label = null)
* @method Show\Field|Collection consume_coupon(string $label = null)
* @method Show\Field|Collection convertibility_time(string $label = null)
* @method Show\Field|Collection deleted_at(string $label = null)
* @method Show\Field|Collection coupon_goods_name(string $label = null)
* @method Show\Field|Collection coupon_goods_describe(string $label = null)
* @method Show\Field|Collection coupon_price(string $label = null)
* @method Show\Field|Collection coupon_state(string $label = null)
* @method Show\Field|Collection coupon_goods_logo(string $label = null)
* @method Show\Field|Collection discount_id(string $label = null)
* @method Show\Field|Collection discount_count(string $label = null)
* @method Show\Field|Collection discount_start(string $label = null)
* @method Show\Field|Collection discount_end(string $label = null)
* @method Show\Field|Collection uuid(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 product_id(string $label = null)
* @method Show\Field|Collection goods_name(string $label = null)
* @method Show\Field|Collection goods_price(string $label = null)
* @method Show\Field|Collection goods_logo(string $label = null)
* @method Show\Field|Collection goods_type(string $label = null)
* @method Show\Field|Collection goods_desc(string $label = null)
* @method Show\Field|Collection goods_stock(string $label = null)
* @method Show\Field|Collection goods_status(string $label = null)
* @method Show\Field|Collection goods_sales(string $label = null)
* @method Show\Field|Collection goods_unit(string $label = null)
* @method Show\Field|Collection is_free_shipping(string $label = null)
* @method Show\Field|Collection is_hot(string $label = null)
* @method Show\Field|Collection comment_num(string $label = null)
* @method Show\Field|Collection collect_num(string $label = null)
* @method Show\Field|Collection spec_type(string $label = null)
* @method Show\Field|Collection sort(string $label = null)
* @method Show\Field|Collection goods_attr(string $label = null)
* @method Show\Field|Collection goods_id(string $label = null)
* @method Show\Field|Collection goods_bargain_min_price(string $label = null)
* @method Show\Field|Collection goods_bargain_user_number(string $label = null)
* @method Show\Field|Collection goods_bargain_help_user_number(string $label = null)
* @method Show\Field|Collection goods_bargain_success_user_number(string $label = null)
* @method Show\Field|Collection goods_bargain_limited(string $label = null)
* @method Show\Field|Collection goods_bargain_limited_remain(string $label = null)
* @method Show\Field|Collection goods_bargain_end_time(string $label = null)
* @method Show\Field|Collection goods_bargain_status(string $label = null)
* @method Show\Field|Collection goods_ids(string $label = null)
* @method Show\Field|Collection goods_bargain_image(string $label = null)
* @method Show\Field|Collection goods_bargain_name(string $label = null)
* @method Show\Field|Collection goods_bargain_price(string $label = null)
* @method Show\Field|Collection goods_bargain_residue_number(string $label = null)
* @method Show\Field|Collection goods_bargain_number(string $label = null)
* @method Show\Field|Collection goods_bargain_count(string $label = null)
* @method Show\Field|Collection goods_bargain_start_time(string $label = null)
* @method Show\Field|Collection uid_help_chop(string $label = null)
* @method Show\Field|Collection goods_sku(string $label = null)
* @method Show\Field|Collection goods_price_min(string $label = null)
* @method Show\Field|Collection goods_price_current(string $label = null)
* @method Show\Field|Collection goods_bargain_this_number(string $label = null)
* @method Show\Field|Collection goods_message(string $label = null)
* @method Show\Field|Collection goods_grade(string $label = null)
* @method Show\Field|Collection serve_grade(string $label = null)
* @method Show\Field|Collection grade_content(string $label = null)
* @method Show\Field|Collection reply(string $label = null)
* @method Show\Field|Collection evaluate_time(string $label = null)
* @method Show\Field|Collection discount_coupon_name(string $label = null)
* @method Show\Field|Collection discount_coupon_image(string $label = null)
* @method Show\Field|Collection classify_id(string $label = null)
* @method Show\Field|Collection satisfy_reduce(string $label = null)
* @method Show\Field|Collection practical_reduce(string $label = null)
* @method Show\Field|Collection discount_coupon_start(string $label = null)
* @method Show\Field|Collection discount_coupon_end(string $label = null)
* @method Show\Field|Collection status(string $label = null)
* @method Show\Field|Collection goods_title(string $label = null)
* @method Show\Field|Collection goods_info(string $label = null)
* @method Show\Field|Collection cost_price(string $label = null)
* @method Show\Field|Collection ot_price(string $label = null)
* @method Show\Field|Collection goods_postage(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 is_postage(string $label = null)
* @method Show\Field|Collection max_seckill_num(string $label = null)
* @method Show\Field|Collection time_id(string $label = null)
* @method Show\Field|Collection once_num(string $label = null)
* @method Show\Field|Collection type_id(string $label = null)
* @method Show\Field|Collection spec_name(string $label = null)
* @method Show\Field|Collection value_ids(string $label = null)
* @method Show\Field|Collection value_name(string $label = null)
* @method Show\Field|Collection price(string $label = null)
* @method Show\Field|Collection stock(string $label = null)
* @method Show\Field|Collection stock_frozen(string $label = null)
* @method Show\Field|Collection spec_id(string $label = null)
* @method Show\Field|Collection spec_value(string $label = null)
* @method Show\Field|Collection type_name(string $label = null)
* @method Show\Field|Collection type_logo(string $label = null)
* @method Show\Field|Collection type_status(string $label = null)
* @method Show\Field|Collection pid(string $label = null)
* @method Show\Field|Collection is_show(string $label = null)
* @method Show\Field|Collection regimental_id(string $label = null)
* @method Show\Field|Collection group_id(string $label = null)
* @method Show\Field|Collection goods_image(string $label = null)
* @method Show\Field|Collection group_name(string $label = null)
* @method Show\Field|Collection original_cost(string $label = null)
* @method Show\Field|Collection group_price(string $label = null)
* @method Show\Field|Collection group_number(string $label = null)
* @method Show\Field|Collection limit_quantity(string $label = null)
* @method Show\Field|Collection residue_quantity(string $label = null)
* @method Show\Field|Collection stop_time(string $label = null)
* @method Show\Field|Collection group_state(string $label = null)
* @method Show\Field|Collection brokerage_price(string $label = null)
* @method Show\Field|Collection peoples(string $label = null)
* @method Show\Field|Collection group_image(string $label = null)
* @method Show\Field|Collection attempts(string $label = null)
* @method Show\Field|Collection reserved_at(string $label = null)
* @method Show\Field|Collection available_at(string $label = null)
* @method Show\Field|Collection live_id(string $label = null)
* @method Show\Field|Collection like_time(string $label = null)
* @method Show\Field|Collection live_goods_name(string $label = null)
* @method Show\Field|Collection live_goods_synopsis(string $label = null)
* @method Show\Field|Collection live_goods_image(string $label = null)
* @method Show\Field|Collection selling price(string $label = null)
* @method Show\Field|Collection goods_link(string $label = null)
* @method Show\Field|Collection direct_broadcasting_title(string $label = null)
* @method Show\Field|Collection direct_broadcasting_cover(string $label = null)
* @method Show\Field|Collection start_direct_broadcasting(string $label = null)
* @method Show\Field|Collection end_direct_broadcasting(string $label = null)
* @method Show\Field|Collection push_url(string $label = null)
* @method Show\Field|Collection push_key(string $label = null)
* @method Show\Field|Collection live_url(string $label = null)
* @method Show\Field|Collection direct_broadcasting_state(string $label = null)
* @method Show\Field|Collection attention(string $label = null)
* @method Show\Field|Collection max_number_people(string $label = null)
* @method Show\Field|Collection insert_fans(string $label = null)
* @method Show\Field|Collection purchase_number_people(string $label = null)
* @method Show\Field|Collection trade_no(string $label = null)
* @method Show\Field|Collection order_sn(string $label = null)
* @method Show\Field|Collection order_status(string $label = null)
* @method Show\Field|Collection user_address(string $label = null)
* @method Show\Field|Collection user_phone(string $label = null)
* @method Show\Field|Collection order_type(string $label = null)
* @method Show\Field|Collection total_postage(string $label = null)
* @method Show\Field|Collection pay_status(string $label = null)
* @method Show\Field|Collection pay_type(string $label = null)
* @method Show\Field|Collection pay_time(string $label = null)
* @method Show\Field|Collection total_price(string $label = null)
* @method Show\Field|Collection total_num(string $label = null)
* @method Show\Field|Collection pay_price(string $label = null)
* @method Show\Field|Collection deduction_price(string $label = null)
* @method Show\Field|Collection tokenable_type(string $label = null)
* @method Show\Field|Collection tokenable_id(string $label = null)
* @method Show\Field|Collection token(string $label = null)
* @method Show\Field|Collection abilities(string $label = null)
* @method Show\Field|Collection last_used_at(string $label = null)
* @method Show\Field|Collection points(string $label = null)
* @method Show\Field|Collection points_type(string $label = null)
* @method Show\Field|Collection points_mode(string $label = null)
* @method Show\Field|Collection use_state(string $label = null)
* @method Show\Field|Collection order_number(string $label = null)
* @method Show\Field|Collection refund_reason(string $label = null)
* @method Show\Field|Collection audit_status(string $label = null)
* @method Show\Field|Collection refund_status(string $label = null)
* @method Show\Field|Collection audit_name(string $label = null)
* @method Show\Field|Collection audit_phone(string $label = null)
* @method Show\Field|Collection id_number(string $label = null)
* @method Show\Field|Collection audit_region(string $label = null)
* @method Show\Field|Collection audit_addre(string $label = null)
* @method Show\Field|Collection audit_uid(string $label = null)
* @method Show\Field|Collection audit_remark(string $label = null)
* @method Show\Field|Collection names(string $label = null)
* @method Show\Field|Collection brokerage_type(string $label = null)
* @method Show\Field|Collection settle_accounts(string $label = null)
* @method Show\Field|Collection grade_name(string $label = null)
* @method Show\Field|Collection grade_experience(string $label = null)
* @method Show\Field|Collection grade_ratio(string $label = null)
* @method Show\Field|Collection grade_status(string $label = null)
* @method Show\Field|Collection regimental_name(string $label = null)
* @method Show\Field|Collection regimental_phone(string $label = null)
* @method Show\Field|Collection regimental_city(string $label = null)
* @method Show\Field|Collection regimental_region(string $label = null)
* @method Show\Field|Collection regimental_plot(string $label = null)
* @method Show\Field|Collection regimental_address(string $label = null)
* @method Show\Field|Collection regimental_coordinate(string $label = null)
* @method Show\Field|Collection regimental_integral(string $label = null)
* @method Show\Field|Collection regimental_freight(string $label = null)
* @method Show\Field|Collection regimental_sale(string $label = null)
* @method Show\Field|Collection regimental_uid(string $label = null)
* @method Show\Field|Collection verification_id(string $label = null)
* @method Show\Field|Collection set_affiche(string $label = null)
* @method Show\Field|Collection set_start(string $label = null)
* @method Show\Field|Collection set_end(string $label = null)
* @method Show\Field|Collection set_coverage(string $label = null)
* @method Show\Field|Collection service_charge(string $label = null)
* @method Show\Field|Collection min_price(string $label = null)
* @method Show\Field|Collection brokerage(string $label = null)
* @method Show\Field|Collection path(string $label = null)
* @method Show\Field|Collection seckill_id(string $label = null)
* @method Show\Field|Collection duration_time(string $label = null)
* @method Show\Field|Collection scekill_status(string $label = null)
* @method Show\Field|Collection attr_name(string $label = null)
* @method Show\Field|Collection attr_type(string $label = null)
* @method Show\Field|Collection attr_value(string $label = null)
* @method Show\Field|Collection addre(string $label = null)
* @method Show\Field|Collection phone(string $label = null)
* @method Show\Field|Collection u_name(string $label = null)
* @method Show\Field|Collection update_at(string $label = null)
* @method Show\Field|Collection email(string $label = null)
* @method Show\Field|Collection email_verified_at(string $label = null)
* @method Show\Field|Collection member_name(string $label = null)
* @method Show\Field|Collection member_phone(string $label = null)
* @method Show\Field|Collection openid(string $label = null)
* @method Show\Field|Collection session_key(string $label = null)
* @method Show\Field|Collection user_password(string $label = null)
* @method Show\Field|Collection last_login(string $label = null)
* @method Show\Field|Collection last_login_mode(string $label = null)
* @method Show\Field|Collection user_name(string $label = null)
* @method Show\Field|Collection user_image(string $label = null)
* @method Show\Field|Collection user_integral(string $label = null)
* @method Show\Field|Collection user_residue_integral(string $label = null)
* @method Show\Field|Collection user_use_integral(string $label = null)
* @method Show\Field|Collection user_discount_coupon(string $label = null)
* @method Show\Field|Collection retroactive_card(string $label = null)
* @method Show\Field|Collection bankCard(string $label = null)
* @method Show\Field|Collection goods_bargai_number(string $label = null)
* @method Show\Field|Collection goods_bargain_surplus(string $label = null)
* @method Show\Field|Collection goods_bargai_end_time(string $label = null)
*/
class Show {}
/**
* @method \Dcat\Admin\Extension\DcatSkuPlus\SkuField sku(...$params)
*/
class Form {}
}
namespace Dcat\Admin\Grid {
/**
*/
class Column {}
/**
*/
class Filter {}
}
namespace Dcat\Admin\Show {
/**
*/
class Field {}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cyjisgod/community-group.git
git@gitee.com:cyjisgod/community-group.git
cyjisgod
community-group
CommunityGroup
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385