- using System;
- using System.Collections.Generic;
- namespace MySystem.MainModels
- {
- 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; }
- }
- }
|