Files
ZYZ/shared/domain/roleField/shop.ts
2021-03-31 17:52:34 +08:00

17 lines
450 B
TypeScript

// hero表内属性基础格式
export class ShopItemListParam {
shopItemId: number;
discount: number;
typeId: number;
buyCount: number;
order: number;
constructor(shopItemId: number, discount: number, typeId: number, buyCount: number, order: number) {
this.shopItemId = shopItemId;
this.discount = discount;
this.typeId = typeId;
this.buyCount = buyCount;
this.order = order;
}
}