TdevDevStoreCreateModel.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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 TdevDevStoreCreateModel
  9. {
  10. public string C_Name { get; set; }
  11. public string C_DevTempCode { get; set; }
  12. public string C_StoreCode { get; set; }
  13. public string C_NumberCode{ get; set; }
  14. public string C_Remark { get; set; }
  15. public string C_OpsTempCode { get; set; }
  16. public string C_RepairTempCode { get; set; }
  17. public string C_RunTempCode { get; set; }
  18. public string C_PlanTempCode { get; set; }
  19. public string C_ContractNumber { get; set; }
  20. public DateTime D_DevOpsStart { get; set; }
  21. public DateTime D_DevOpsEnd { get; set; }
  22. public string C_DevQRUrl { get; set; }
  23. public string C_Url { get; set; }
  24. public string C_StaticUrl { get; set; }
  25. public string C_GPS { get; set; }
  26. }
  27. public class DevOperateCreateModel
  28. {
  29. public string C_DevStoreCode { get; set; }
  30. public string C_LogMsg { get; set; }
  31. public string C_Remark { get; set; }
  32. public string C_Type { get; set; }
  33. }
  34. }