终端一体化运控平台
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
641 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.JXJFoodBigStation.Model
  8. {
  9. public class RecipeDosing
  10. {
  11. public string RecipeCode { get; set; }
  12. public int RecipeTray { get; set; }
  13. public int DosingStatus { get; set; }
  14. public bool IsAllowIssue { get; set; }
  15. public bool IsAGVArrive { get; set; }
  16. public bool IsReceviceFinish { get; set; }
  17. public bool IsDosingFinish { get; set; }
  18. public DateTime DosingStartTime { get; set; }
  19. }
  20. }