using System;
using System.Collections.Generic;
namespace MySystem
{
    public class PosOpenList
    {
        //开机榜
        public int BuyUserId { get; set; }
        public string RealName { get; set; }
        public int OpenCount { get; set; }

    }
}