d_sms_service/APT.BaseData.Domain/Entities/OP/T_OP_RECHARGE_SETTING.cs

18 lines
418 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.BaseData.Domain.Entities.OP
{
[Description("充值金额配置")]
public class T_OP_RECHARGE_SETTING : MesEntityBase
{
[Description("充值金额")]
[FormFieldTable]
[FormFieldEdit]
public decimal AMOUNT { get; set; }
}
}