Main/System/KnapSack/Logic/ItemModel.cs
@@ -152,6 +152,7 @@ public string guid; //物品的实例ID public int gearScore; //评分 public bool isLock; //是否锁定 public ItemInfo() { @@ -168,6 +169,7 @@ guid = serverItem.ItemGUID; isAuction = serverItem.IsBind; gearScore = (int)serverItem.GearScore; isLock = serverItem.IsLocked > 0; } public ItemInfo(H0704_tagRolePackRefresh serverItem) @@ -180,6 +182,7 @@ guid = serverItem.ItemGUID; isAuction = serverItem.IsBind; gearScore = (int)serverItem.GearScore; isLock = serverItem.IsLocked > 0; } }