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

38 lines
1.0 KiB

5 months ago
  1. using ICSSoft.Frame.Data.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace ICSSoft.Frame.APP.Entity
  7. {
  8. public class FormICSEQPSTPUIModel : ICSNCTP
  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. public decimal STIME { get; set; }
  16. public string MUSER { get; set; }
  17. public string MUSERName { get; set; }
  18. public DateTime? MTIME { get; set; }
  19. public string WorkPoint { get; set; }
  20. public string EATTRIBUTE1 { get; set; }
  21. //20180625新增
  22. //外协属性
  23. public string OutsourcingProperties { get; set; }
  24. //刀片型号和品牌
  25. public string BladeModelAndBrand { get; set; }
  26. //工装编号:
  27. public string ToolingNo { get; set; }
  28. //夹具
  29. public string Jiaju { get; set; }
  30. }
  31. }