12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class RechargeGiftPrizeVo
- {
- public RechargeGiftPrizeVo(int id)
- {
- this.productId = id;
- }
- /// <summary>
- /// 商品id
- /// </summary>
- public int productId { get; set; }
- public List<ItemVo> prizeList
- {
- get
- {
- List<ItemVo> prizeList = new List<ItemVo>();
- if (productId >= 6 && productId <= 1000)//首冲
- {
- }
- else if(productId >= 801001 && productId <= 801999)//限购
- {
- }
- else if (productId >= 804001 && productId <= 804999)//每日特惠
- {
- }
- else if (productId >= 805001 && productId <= 805999)//限时
- {
- }
- else if (productId >= 901001 && productId <= 999999)//月卡
- {
- }
- return prizeList;
- }
- }
- }
|