锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
858 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity
  6. {
  7. public class FormICSTPUIModel
  8. {
  9. private string Id { get; set; }
  10. private string TpCode { get; set; }
  11. private string ShiftTypeId { get; set; }
  12. private string ShiftId { get; set; }
  13. private string TpDesc { get; set; }
  14. private int Tpseq { get; set; }
  15. private string TpType { get; set; }
  16. private DateTime? TpbTime { get; set; }
  17. private DateTime? TpeTime { get; set; }
  18. private string IsOverDate { get; set; }
  19. private string MUser { get; set; }
  20. private string MUserName { get; set; }
  21. private DateTime? MTime { get; set; }
  22. private string WorkPoint { get; set; }
  23. private string Eattribute1 { get; set; }
  24. }
  25. }