FormModel.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. namespace wispro.sp.web.Models
  3. {
  4. public class StepFormModel
  5. {
  6. public string ReceiverAccountType { get; set; } = "ant-design@alipay.com";
  7. public string ReceiverAccount { get; set; } = "test@example.com";
  8. public string ReceiverName { get; set; } = "Alex";
  9. public string PayAccount { get; set; }
  10. public string Password { get; set; } = "500";
  11. public string Amount { get; set; } = "12345678";
  12. }
  13. public class AdvancedFormModel
  14. {
  15. public string Name { get; set; }
  16. public string Url { get; set; }
  17. public string Owner { get; set; }
  18. public string Approver { get; set; }
  19. public DateTime?[] DateRange { get; set; }
  20. public string Type { get; set; }
  21. public string Name2 { get; set; }
  22. public string Url2 { get; set; }
  23. public string Owner2 { get; set; }
  24. public string Approver2 { get; set; }
  25. public DateTime? DateRange2 { get; set; }
  26. public string Type2 { get; set; }
  27. }
  28. public class BasicFormModel
  29. {
  30. public string Title { get; set; }
  31. public string Client { get; set; }
  32. public string Invites { get; set; }
  33. public int Disclosure { get; set; }
  34. public int Weight { get; set; }
  35. public string Standard { get; set; }
  36. public string Goal { get; set; }
  37. public DateTime?[] DateRange { get; set; }
  38. }
  39. public class Owner
  40. {
  41. public string Id { get; set; }
  42. public string Name { get; set; }
  43. }
  44. }