PosOpenList.cs 263 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class PosOpenList
  6. {
  7. //开机榜
  8. public int BuyUserId { get; set; }
  9. public string RealName { get; set; }
  10. public int OpenCount { get; set; }
  11. }
  12. }