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

24 lines
764 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 FormICSOPUIModel:ICSOP
  8. {
  9. public string ID { get; set; }
  10. public string OPCODE { get; set; }
  11. public string OPDESC { get; set; }
  12. public string OPCOLLECTION { get; set; }
  13. public string OPCONTROL { get; set; }
  14. public string MUSER { get; set; }
  15. public string MUSERName { get; set; }
  16. public DateTime? MTIME { get; set; }
  17. public string WorkPoint { get; set; }
  18. public string EATTRIBUTE1 { get; set; }
  19. public string CostCenter { get; set; }
  20. public string OpFrom { get; set; }
  21. public bool EnableFlag { get; set; }
  22. }
  23. }