123456789101112131415161718192021222324252627 |
- namespace JiaZhiQuan.Common
- {
- public class ActivityDaka
- {
- //机会来源 0 打卡 1 价值币购买
- public enum DakaDrawGainSource
- {
- 打卡 = 0,
- 价值币购买 = 1
- }
- //抽奖类型 0 普通抽奖 1 终极抽奖
- public enum DakaDrawGainType
- {
- 普通抽奖 = 0,
- 终极抽奖 = 1
- }
- //抽奖商品类型
- public enum DakaDrawGoodsType
- {
- 谢谢参与 = -1,
- 价值币 = 0,
- 虚拟商品 = 1,
- 实体商品 = 2,
- }
- }
- }
|