12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsTotalDebtLog
- {
- public int Id { get; set; }
- public string CreateBy { get; set; }
- public string Remark { get; set; }
- public string Kind { get; set; }
- public int ChangeType { get; set; }
- public decimal Amount { get; set; }
- public decimal AfterAmount { get; set; }
- public decimal BeforeAmount { get; set; }
- public int UserId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|