鲜花2.0-接口测试bug修复

This commit is contained in:
杨建炊 2024-08-08 16:17:40 +08:00
parent 9c559f3bdd
commit ea56daa372

View File

@ -15,8 +15,8 @@ class CreateBusinessAfterSaleOrders extends Migration
{ {
Schema::create('business_after_sale_orders', function (Blueprint $table) { Schema::create('business_after_sale_orders', function (Blueprint $table) {
$table->bigIncrements('id'); $table->bigIncrements('id');
$table->string('after_sales_biz_sn',150)->comment('售后单编号'); $table->string('after_sales_biz_sn',100)->comment('售后单编号');
$table->string('order_sn',150)->comment('父单编号'); $table->string('order_sn',100)->comment('父单编号');
$table->integer('shop_id')->comment('门店id'); $table->integer('shop_id')->comment('门店id');
$table->integer('after_sales_status')->default(0)->comment('售后单状态 $table->integer('after_sales_status')->default(0)->comment('售后单状态
0-未发起售后 1-退款中 2-退款成功 3-待处理 4-拒绝退款 6-(顾客)退货 7-(团长)确认退货 8-(顾客)撤销 9-(系统)关闭'); 0-未发起售后 1-退款中 2-退款成功 3-待处理 4-拒绝退款 6-(顾客)退货 7-(团长)确认退货 8-(顾客)撤销 9-(系统)关闭');