123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class KxsCampBonusLog
- {
- public int Id { get; set; }
- public string CreateBy { get; set; }
- public int StageId { get; set; }
- public int CampId { get; set; }
- public int OrderId { get; set; }
- public string PosSn { get; set; }
- public string Remark { get; set; }
- public string Kind { get; set; }
- public decimal AfterAmount { get; set; }
- public decimal BeforeAmount { get; set; }
- public decimal Amount { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|