ExportStaff.cs 471 B

12345678910111213141516171819
  1. using AutoMapper;
  2. using System;
  3. using System.ComponentModel;
  4. namespace DllUfpEntity
  5. {
  6. [AutoMap(typeof(Staff))]
  7. public class ExportStaff
  8. {
  9. [Description("工号")]
  10. public string FCode { get; set; }
  11. [Description("姓名")]
  12. public string FName { get; set; }
  13. [Description("录入时间")]
  14. public DateTime RecTime { get; set; }
  15. [Description("角色")]
  16. public string RoleNames { get; set; }
  17. }
  18. }