12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class SysDict
- {
- public long Id { get; set; }
- public string DictType { get; set; }
- public string Description { get; set; }
- public string CreateBy { get; set; }
- public string UpdateBy { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? UpdateTime { get; set; }
- public string Remarks { get; set; }
- public string SystemFlag { get; set; }
- public string DelFlag { get; set; }
- }
- }
|