mh_lcmk_sms_service/APT.BaseData.Domain/ApiModel/OP/RechargeOrder.cs
2024-07-12 16:37:09 +08:00

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