KxsTotalDebtLog.cs 716 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsTotalDebtLog
  6. {
  7. public int Id { get; set; }
  8. public string CreateBy { get; set; }
  9. public string Remark { get; set; }
  10. public string Kind { get; set; }
  11. public int ChangeType { get; set; }
  12. public decimal Amount { get; set; }
  13. public decimal AfterAmount { get; set; }
  14. public decimal BeforeAmount { get; set; }
  15. public int UserId { get; set; }
  16. public int Version { get; set; }
  17. public int DelFlag { get; set; }
  18. public DateTime? UpdateTime { get; set; }
  19. public DateTime? CreateTime { get; set; }
  20. }
  21. }