diff --git a/src/api/shop/shop.ts b/src/api/shop/shop.ts index 3959675..3805665 100644 --- a/src/api/shop/shop.ts +++ b/src/api/shop/shop.ts @@ -4,6 +4,8 @@ import { http } from '@/utils/http'; export interface ShopQuery extends BasePageQuery { shopName?: string; corpid?: string; + /** 归属类型(0-借还柜 1-固资通) */ + belongType?: number; } /** 商店DTO */ @@ -11,12 +13,16 @@ export interface ShopDTO { shopId: number; shopName: string; corpid?: string; + /** 归属类型(0-借还柜 1-固资通) */ + belongType?: number; } /** 新增商店命令 */ export interface AddShopCommand { shopName: string; corpid: string; + /** 归属类型(0-借还柜 1-固资通) */ + belongType?: number; } /** 更新商店命令 */ @@ -24,6 +30,8 @@ export interface UpdateShopCommand { corpid: string; shopId: number; shopName: string; + /** 归属类型(0-借还柜 1-固资通) */ + belongType?: number; } /** 获取商店列表 */ diff --git a/src/views/cabinet/shop/index.vue b/src/views/cabinet/shop/index.vue index cda170e..a418774 100644 --- a/src/views/cabinet/shop/index.vue +++ b/src/views/cabinet/shop/index.vue @@ -166,6 +166,11 @@ getList(); + + +