1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using Library;
- using LitJson;
- using System.Linq;
- using System.Data;
- using System.Threading;
- using MySystem.PxcModels;
- namespace MySystem
- {
- public class PrizeSetHelper
- {
- public readonly static PrizeSetHelper Instance = new PrizeSetHelper();
- private PrizeSetHelper()
- { }
- public static void Do(string type, string no)
- {
-
- }
- }
- }
|