12345678910111213141516171819 |
- using AutoMapper;
- using System;
- using System.ComponentModel;
- namespace DllUfpEntity
- {
- [AutoMap(typeof(Staff))]
- public class ExportStaff
- {
- [Description("工号")]
- public string FCode { get; set; }
- [Description("姓名")]
- public string FName { get; set; }
- [Description("录入时间")]
- public DateTime RecTime { get; set; }
- [Description("角色")]
- public string RoleNames { get; set; }
- }
- }
|