//////////////////// // 由CodeGenerator创建。 // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc // author: gwang // 日期: 2023-08-09 10:06:20 //////////////////// using System; using Newtonsoft.Json; /// /// Static Modle item 道具表 /// sealed public partial class sm_item { /// /// 查询用的ID /// public Int32 typeId { get; set; } /// /// 物品名称 default(物品名称) /// public String name { get; set; } /// /// 物品icon名 /// public String icon { get; set; } /// /// 物品描述 default(物品描述) /// public String desc { get; set; } /// /// 物品归类 100:图纸;101:消耗品 102:道具 default(0) /// public Int32 itemType { get; set; } /// /// 道具可叠加展示的数量上限, 0 代表不可叠加 default(0) /// public Int32 pileNum { get; set; } /// /// 品质/稀有度 1白2绿3蓝 default(1) /// public Int32 quality { get; set; } [JsonConstructor] private sm_item (){ } }