123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.OpModels
- {
- public partial class AmountChangeRecord
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string Remark { get; set; }
- public string Title { get; set; }
- public int OperateType { get; set; }
- public decimal ChangeAmount { get; set; }
- public decimal AfterAmount { get; set; }
- public decimal BeforeAmount { get; set; }
- public int AmountType { get; set; }
- public int UserId { get; set; }
- public string Operater { get; set; }
- }
- }
|