12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using FuelServer.Core.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Fuel.Core.Transactions.Dto
- {
- public class TransactionsInput
- {
-
-
-
- public int? TransactionID { get; set; }
-
-
-
- public int? type { get; set; }
-
-
-
- public int? MiniProgramID { get; set; }
-
-
-
- public DateTime? TransactionSTime { get; set; }
-
-
-
- public DateTime? TransactionETime { get; set; }
-
-
-
- public string Product { get; set; }
-
-
-
- public string paytype { get; set; }
-
-
-
- public int? NozzleId { get; set; }
- public static transactionsORDERSTATUS ToTransactionsORDERSTATUS(int value)
- {
- if (Enum.IsDefined(typeof(transactionsORDERSTATUS), value))
- {
- return (transactionsORDERSTATUS)value;
- }
- else
- {
- throw new ArgumentException("Invalid order type value.", nameof(value));
- }
- }
- }
- }
|