12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class SysDictItem
- {
- public long Id { get; set; }
- public long DictId { get; set; }
- public string ItemValue { get; set; }
- public string Label { get; set; }
- public string DictType { get; set; }
- public string Description { get; set; }
- public int SortOrder { 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 DelFlag { get; set; }
- }
- }
|