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; } } }