using System; using System.Collections.Generic; namespace MySystem { /// /// 流水榜实体 /// public class FlowingWaterList { public int UserId { get; set; } public string RealName { get; set; } public decimal Sum { get; set; } } }