123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsUserAward
- {
- public int Id { get; set; }
- public string UpdateBy { get; set; }
- public string CreateBy { get; set; }
- public string AwardNo { get; set; }
- public string Remark { get; set; }
- public string BatchNo { get; set; }
- public int SyncStatus { get; set; }
- public int GrantStatus { get; set; }
- public decimal Amount { get; set; }
- public int VariationType { get; set; }
- public int UserId { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public int DelFlag { get; set; }
- public int Version { get; set; }
- }
- }
|