dev_HandModel.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Xml.Linq;
  8. namespace Ropin.Inspection.Model.ViewModel.DEV
  9. {
  10. public class TdevHandSearchModel : BaseSearchModel
  11. {
  12. public Guid C_ID { get; set; }
  13. public string C_Name { get; set; }
  14. public string C_OrgCode { get; set; }
  15. public string C_StoreCode { get; set; }
  16. public string C_Status { get; set; }
  17. }
  18. public class dev_HandModel : BaseViewModel
  19. {
  20. public Guid C_ID { get; set; }
  21. [Required]
  22. public string C_Name { get; set; }
  23. public string C_HandNo { get; set; }
  24. public string C_QRCode { get; set; }
  25. public string C_MachineCode { get; set; }
  26. [Required]
  27. public DateTime? D_ProdDate { get; set; }
  28. [Required]
  29. public Guid C_OrgCode { get; set; }
  30. [Required]
  31. public string C_Marker { get; set; }
  32. public string C_ProdArea { get; set; }
  33. public string C_Manufacturer { get; set; }
  34. public string C_ImagePath { get; set; }
  35. public string C_IconPath { get; set; }
  36. public string C_ThreeDPath { get; set; }
  37. public string C_Parameter { get; set; }
  38. public string C_Contacts { get; set; }
  39. public string C_ContactPhone { get; set; }
  40. public string C_OfficialWebsiteUrl { get; set; }
  41. public int I_ValiDays { get; set; }
  42. public int I_Sort { get; set; }
  43. public string C_Remark { get; set; }
  44. public Guid C_CreateBy { get; set; }
  45. public DateTime D_CreateOn { get; set; }
  46. public Guid? C_LastUpdatedBy { get; set; }
  47. public DateTime? D_LastUpdatedOn { get; set; }
  48. public string C_Status { get; set; } = "1";
  49. }
  50. public class devHandViewModel
  51. {
  52. public string C_ID { get; set; }
  53. public string C_Name { get; set; }
  54. public string C_HandNo { get; set; }
  55. public string C_QRCode { get; set; }
  56. public string C_MachineCode { get; set; }
  57. public DateTime? D_ProdDate { get; set; }
  58. public Guid C_OrgCode { get; set; }
  59. public string C_OrgName { get; set; }
  60. public string C_Marker { get; set; }
  61. public string C_ProdArea { get; set; }
  62. public string C_Manufacturer { get; set; }
  63. public string C_ImagePath { get; set; }
  64. public string C_IconPath { get; set; }
  65. public string C_ThreeDPath { get; set; }
  66. public string C_Parameter { get; set; }
  67. public string C_Contacts { get; set; }
  68. public string C_ContactPhone { get; set; }
  69. public string C_OfficialWebsiteUrl { get; set; }
  70. public int I_ValiDays { get; set; }
  71. public int I_Sort { get; set; }
  72. public string C_Remark { get; set; }
  73. public string C_CreateBy { get; set; }
  74. public DateTime D_CreateOn { get; set; }
  75. public string C_LastUpdatedBy { get; set; }
  76. public DateTime? D_LastUpdatedOn { get; set; }
  77. public string C_Status { get; set; } = "1";
  78. public long? bindCut { get; set; }
  79. }
  80. }