EmployeeMaster.cs 933 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.StructuredDB.WMS
  9. {
  10. /// <summary>
  11. /// 雇员信息表
  12. /// </summary>
  13. [Comment("雇员信息表")]
  14. public class EmployeeMaster
  15. {
  16. /// <summary>
  17. /// 主键
  18. /// </summary>
  19. [Comment("主键")]
  20. [Key]
  21. public int RecID { get; set; }
  22. /// <summary>
  23. /// 域名
  24. /// </summary>
  25. [Comment("域名")]
  26. public string Domain { get; set; }
  27. /// <summary>
  28. /// 账号
  29. /// </summary>
  30. [Comment("账号")]
  31. public string Employee { get; set; }
  32. /// <summary>
  33. /// 名称
  34. /// </summary>
  35. [Comment("名称")]
  36. public string Name { get; set; }
  37. }
  38. }