物品返回格式

This commit is contained in:
mamengke01
2020-12-21 16:04:58 +08:00
parent 10aeebc6d4
commit 86ff7e5dfd
5 changed files with 726 additions and 710 deletions

View File

@@ -15,7 +15,7 @@ export interface DicGoods {
// 物品名
readonly name: string;
// 等级限制
readonly lvLimted: number;
readonly lvLimited: number;
// 合成装备需要的碎片数
readonly pieces: number;
// 对应的碎片id
@@ -63,7 +63,7 @@ type KeysEnum<T> = { [P in keyof Required<T>]: true };
const DicGoodsKeys: KeysEnum<DicGoods> = {
good_id: true,
name: true,
lvLimted: true,
lvLimited: true,
pieces: true,
composeMaterial: true,
specialMaterial: true,