12345678910111213141516171819 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(OfAppletlog))]
- public class ExportOfAppletlog
- {
- [Description("设备ID")]
- public string MacCode { get; set; }
- [Description("版本号")]
- public string AppletV { get; set; }
- [Description("日期")]
- public DateTime RecTime { get; set; }
- }
- }
|