锐腾搅拌上料功能
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.

49 lines
1.4 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using ICSSoft.Frame.Data.Entity;
  6. namespace ICSSoft.Frame.APP.Entity
  7. {
  8. public class FormICSEQPSTPUIModelNew : ICSEQPSTP
  9. {
  10. public string ID { get; set; }
  11. public string ItemCode { get; set; }
  12. public string OPCODE { get; set; }
  13. public string EQPCODE { get; set; }
  14. public string ETTRCODE { get; set; }
  15. //标准工时
  16. public decimal STIME { get; set; }
  17. //准备工时
  18. public decimal RTIME { get; set; }
  19. //调机工时
  20. public decimal TJTIME { get; set; }
  21. //加工工时
  22. public decimal WORKTIME { get; set; }
  23. //检验工时
  24. public decimal JYTIME { get; set; }
  25. //夹装工时
  26. public decimal JZTIME { get; set; }
  27. public string MUSER { get; set; }
  28. public string MUSERName { get; set; }
  29. public DateTime? MTIME { get; set; }
  30. public string WorkPoint { get; set; }
  31. public string EATTRIBUTE1 { get; set; }
  32. //20180625新增
  33. //外协属性
  34. public string OutsourcingProperties { get; set; }
  35. //刀片型号和品牌
  36. public string BladeModelAndBrand { get; set; }
  37. //工装编号:
  38. public string ToolingNo { get; set; }
  39. //夹具
  40. public string Jiaju { get; set; }
  41. }
  42. }