文章列表
public class HwService {
public static Map<Integer, HwAward> awardMap = new HashMap<Integer, HwAward>();
public static Object lock = new Object(); //锁
public static int[] awardIndexs = null; //奖品索引
/**
* 重新生成奖品索引数组
*
* @retu ...