//生成fa_test表的CRUD且一鍵生成菜單
php think crud -t test -u 1
//刪除fa_test表生成的CRUD
php think crud -t test -d 1
//生成fa_test表的CRUD且生成關聯模型category,外鏈為category_id,關聯表主鍵為id
php think crud -t test -r category -k category_id -p id
//生成fa_test表的CRUD且所有以list或data結尾的字段都生成復選框
php think crud -t test --setcheckboxsuffix=list --setcheckboxsuffix=data
//生成fa_test表的CRUD且所有以image和img結尾的字段都生成圖片上傳組件
php think crud -t test --imagefield=image --imagefield=img
//關聯多個表,參數傳遞時請按順序依次傳遞,支持以下幾個參數relation/relationmodel/relationforeignkey/relationprimarykey/relationfields/relationmode
php think crud -t test --relation=category --relation=admin --relationforeignkey=category_id --relationforeignkey=admin_id
------------創建curd 並且關聯多表 且后綴img的生成上傳圖
php think crud -t fa_project -u 1 --imagefield=img --relation=fa_project_cat --relation=fa_country --relationforeignkey=category_id --relationforeignkey=country_id