123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using Newtonsoft.Json;
- namespace Vo
- {
-
-
-
- public class SysDictQueryVo
- {
-
-
-
- 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; }
- }
- }
|