style(api): 统一代码风格并修复语法问题
- 统一import语句的空格格式 - 修复分号缺失问题 - 调整函数参数换行格式以符合规范 - 删除多余空行保持代码整洁 - 修复字符串拼接的换行格式问题
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type { PageParam } from '@/api';
|
||||
import {OrderGoods} from "@/api/system/orderGoods/model";
|
||||
import { OrderGoods } from '@/api/system/orderGoods/model';
|
||||
|
||||
/**
|
||||
* 订单
|
||||
@@ -136,9 +136,9 @@ export interface ShopOrder {
|
||||
// 系统版本号 0当前版本 value=其他版本
|
||||
version?: number;
|
||||
// 买家备注
|
||||
buyerRemarks: undefined,
|
||||
buyerRemarks: undefined;
|
||||
// 商家备注
|
||||
merchantRemarks: undefined,
|
||||
merchantRemarks: undefined;
|
||||
// 用户id
|
||||
userId?: number;
|
||||
// 备注
|
||||
|
||||
Reference in New Issue
Block a user