master
cody 4 months ago
parent d81ccd99ee
commit 73f7ae6942

@ -206,7 +206,6 @@ class BookController extends BaseController
* @OA\Parameter(name="category", in="query", @OA\Schema(type="string"), required=false, description="分类"),
* @OA\Parameter(name="description", in="query", @OA\Schema(type="string"), required=false, description="图书简介"),
* @OA\Parameter(name="cover_id", in="query", @OA\Schema(type="integer"), required=false, description="图书封面ID"),
* @OA\Parameter(name="code", in="query", @OA\Schema(type="integer"), required=false, description="编码"),
* @OA\Parameter(name="total", in="query", @OA\Schema(type="integer"), required=false, description="数量"),
* @OA\Parameter(name="bookshelf", in="query", @OA\Schema(type="integer"), required=false, description="书架"),
* @OA\Parameter(name="status", in="query", @OA\Schema(type="integer"), required=false, description="状态0可借阅1已借出2维护中"),

@ -16,7 +16,6 @@ return new class extends Migration {
$table->comment('图书表');
$table->increments('id');
$table->string('title')->comment('书名');
$table->string('code')->comment('编码');
// 书架
$table->string('bookshelf')->comment('书架');
$table->string('author')->nullable()->comment('作者');

Loading…
Cancel
Save