TdevBoxViewModel.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model
  7. {
  8. public class TdevBoxViewModel : BaseViewModel
  9. {
  10. public string C_ID { get; set; }
  11. public string C_Name { get; set; }
  12. public string C_BoxNo { get; set; }
  13. public string C_QRCode { get; set; }
  14. public string C_ImagePath { get; set; }
  15. public string C_MachineCode { get; set; }
  16. public DateTime D_ProdDate { get; set; }
  17. public string C_BoxTempCode { get; set; }
  18. public string C_BoxTempName { get; set; }
  19. public string C_StoreCode { get; set; }
  20. public int? I_Sort { get; set; }
  21. public string C_Remark { get; set; }
  22. public Guid C_CreateBy { get; set; }
  23. public DateTime D_CreateOn { get; set; }
  24. public Guid? C_LastUpdatedBy { get; set; }
  25. public DateTime? D_LastUpdatedOn { get; set; }
  26. public string C_RunStatus { get; set; }
  27. public string C_Status { get; set; }
  28. }
  29. public class TdevBoxViewSpotModel
  30. {
  31. public TdevBoxViewModel entity { get; set; }
  32. public List<TdevBoxDevSpotViewModel> tdevBoxes { get; set; }
  33. }
  34. }