16 lines
337 B
C#
16 lines
337 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.ApiModel.OP
|
|||
|
|
{
|
|||
|
|
public class RechargeOrder
|
|||
|
|
{
|
|||
|
|
public string code { get; set; }
|
|||
|
|
|
|||
|
|
public decimal rechargeAmount { get; set; }
|
|||
|
|
public int status { get; set; }
|
|||
|
|
public DateTime time { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|