ExportOfAppletlog.cs 467 B

12345678910111213141516171819
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(OfAppletlog))]
  9. public class ExportOfAppletlog
  10. {
  11. [Description("设备ID")]
  12. public string MacCode { get; set; }
  13. [Description("版本号")]
  14. public string AppletV { get; set; }
  15. [Description("日期")]
  16. public DateTime RecTime { get; set; }
  17. }
  18. }