JbStaff.cs 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity
  5. {
  6. public class JbStaff
  7. {
  8. public Guid Id { get; set; }
  9. public Guid? JbId { get; set; }
  10. public DateTime? Sdate { get; set; }
  11. public DateTime? Edate { get; set; }
  12. public string StaffCode { get; set; }
  13. public int? Ftotal { get; set; } = 0;
  14. public int? Fgoods { get; set; } = 0;
  15. public int? Rejects { get; set; } = 0;
  16. public int? Losts { get; set; } = 0;
  17. public string Remark { get; set; }
  18. public string Reccode { get; set; }
  19. public DateTime? Rectime { get; set; }
  20. public string Modcode { get; set; }
  21. public DateTime? Modtime { get; set; }
  22. public int? StatusId { get; set; }
  23. /// <summary>
  24. /// 机台编号
  25. /// </summary>
  26. public string MacCode { get; set; }
  27. }
  28. }