17 lines
450 B
TypeScript
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;
|
|
}
|
|
} |