终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

26 rader
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. }