12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsProfitBase
- {
- public int Id { get; set; }
- public decimal ProfitRate { get; set; }
- public string Name { get; set; }
- public int Status { get; set; }
- public string Remark { get; set; }
- public string UpdateBy { get; set; }
- public string CreateBy { get; set; }
- public int Version { get; set; }
- public string DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public string LvKey { get; set; }
- public int Level { get; set; }
- }
- }
|