12345678910111213141516171819202122232425262728293031 |
- namespace OASystem.Domain.ViewModels
- {
- public class OrderView : ViewBase
- {
-
-
-
- public string PayNo { get; set; }
-
-
-
- public string CreatePayTime { get; set; }
-
-
-
- public string ValidTime { get; set; }
-
-
-
- public string ResultType { get; set; }
-
-
-
- public string Result { get; set; }
- }
- }
|