鲜花2.0-接口测试bug修复

This commit is contained in:
杨建炊 2024-08-08 16:06:56 +08:00
parent 3fbba03d78
commit 616232460e

View File

@ -24,9 +24,9 @@ class CreateBusinessAfterSaleOrders extends Migration
$table->bigInteger('refund_shipping_amount')->default(0)->comment('用户申请退运费金额');
$table->string('description')->nullable()->comment('描述');
$table->string('reason')->nullable()->comment('原因');
$table->json('sub_extensions')->nullable()->comment('子单信息');
$table->json('image_list')->nullable()->comment('图片列表');
$table->json('return_goods_extension')->nullable()->comment('退款物流信息');
$table->text('sub_extensions')->nullable()->comment('子单信息');
$table->text('image_list')->nullable()->comment('图片列表');
$table->text('return_goods_extension')->nullable()->comment('退款物流信息');
$table->integer('apply_type')->default(0)->comment('售后单类型 0-仅退款 1-退货退款');
$table->dateTime('after_sale_created_at')->nullable()->comment('售后单三方创建时间');
$table->dateTime('after_sale_updated_at')->nullable()->comment('售后单三方更新时间');