sm_shop_daily.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ////////////////////
  2. // 由CodeGenerator创建。
  3. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  4. // author: gwang
  5. // 日期: 2023-08-08 14:24:32
  6. ////////////////////
  7. using System;
  8. using Newtonsoft.Json;
  9. /// <summary>
  10. /// Static Modle shop_daily 每日商店
  11. /// </summary>
  12. sealed public partial class sm_shop_daily
  13. {
  14. /// <summary>
  15. /// 用途未知!!请到数据库中添加字段注释。
  16. /// </summary>
  17. public Int32 id { get; set; }
  18. /// <summary>
  19. /// 物品id
  20. /// </summary>
  21. public Int32 typeId { get; set; }
  22. /// <summary>
  23. /// 物品的类型,1钻石;2图纸;3装备;4配件宝箱
  24. /// </summary>
  25. public Int32 type { get; set; }
  26. /// <summary>
  27. /// 花费钱的类型 1:免费;2金币;3钻石;
  28. /// </summary>
  29. public Int32 costType { get; set; }
  30. /// <summary>
  31. /// 花费钱的数量
  32. /// </summary>
  33. public Int32 costNum { get; set; }
  34. /// <summary>
  35. /// 折扣
  36. /// </summary>
  37. public Int32 discount { get; set; }
  38. /// <summary>
  39. /// 限制购买次数
  40. /// </summary>
  41. public Int32 limitNum { get; set; }
  42. [JsonConstructor]
  43. private sm_shop_daily (){ }
  44. }