////////////////////
// 由CodeGenerator创建。
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
// author: gwang
// 日期: 2023-08-08 14:24:32
////////////////////
using System;
using Newtonsoft.Json;
///
/// Static Modle shop_daily 每日商店
///
sealed public partial class sm_shop_daily
{
///
/// 用途未知!!请到数据库中添加字段注释。
///
public Int32 id { get; set; }
///
/// 物品id
///
public Int32 typeId { get; set; }
///
/// 物品的类型,1钻石;2图纸;3装备;4配件宝箱
///
public Int32 type { get; set; }
///
/// 花费钱的类型 1:免费;2金币;3钻石;
///
public Int32 costType { get; set; }
///
/// 花费钱的数量
///
public Int32 costNum { get; set; }
///
/// 折扣
///
public Int32 discount { get; set; }
///
/// 限制购买次数
///
public Int32 limitNum { get; set; }
[JsonConstructor]
private sm_shop_daily (){ }
}