123456789101112131415161718192021222324252627282930313233343536373839 |
- using Central.Control.WebApi.Enum;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Response
- {
-
-
-
- public class OrderInfoResponseDto
- {
-
-
-
- public string Id { set; get; } = string.Empty;
-
-
-
- public string Name { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public PayStatusEnum PayStatus { set; get; } = PayStatusEnum.UnPay;
-
-
-
- public string PaySerialId { set; get; } = string.Empty;
-
-
-
- public PayWayEnum PayWay { set; get; } = PayWayEnum.UnKnow;
- }
- }
|