123456789101112131415161718192021222324252627282930313233343536 |
- using AutoMapper;
- using DllEapEntity.Enums;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(SystemUpdateLog))]
- public class ExportSystemUpdateLog
- {
- [Description("环境 0 正式 1 测试")]
- public EnumEapEnvironment Environment { get; set; }
- [Description("版本号")]
- public string Version { get; set; }
- [Description("更新内容")]
- public string Detail { get; set; }
- [Description("更新时间")]
- public DateTime FDate { get; set; }
- [Description("备注")]
- public string Remark { get; set; }
- [Description("新增人")]
- public string RecName { get; set; }
- [Description("新增时间")]
- public DateTime RecTime { get; set; }
- [Description("修改人")]
- public string ModName { get; set; }
- [Description("修改时间")]
- public DateTime ModTime { get; set; }
-
-
-
-
- }
- }
|