12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsProfitConfig
- {
- public int Id { get; set; }
- public int BaseId { get; set; }
- public int ProfitType { get; set; }
- public int BrandId { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? UpdateTime { get; set; }
- public string DelFlag { get; set; }
- public int Version { get; set; }
- public string CreateBy { get; set; }
- public string UpdateBy { get; set; }
- public string Remark { get; set; }
- public int Status { get; set; }
- public int Level { get; set; }
- }
- }
|