mh_jy_safe/APT.BaseData.Domain/ApiModel/OP/RechargeOrder.cs

16 lines
337 B
C#
Raw Permalink Normal View History

2025-08-25 09:56:57 +08:00
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; }
}
}