using System; using System.Collections.Generic; namespace MySystem.Models.Main { public partial class SubsidyCheck { public uint UserId { get; set; } public int BrandId { get; set; } public decimal SendMoney { get; set; } public decimal ActualMoney { get; set; } public decimal MoreMoney { get; set; } public uint Id { get; set; } public uint Status { get; set; } } }