mh_sms/APT.BaseData.Domain/Entities/OP/T_OP_CHARGE_TIME_SET.cs

18 lines
408 B
C#
Raw Permalink Normal View History

2024-01-22 09:17:01 +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_CHARGE_TIME_SET : MesEntityBase
{
[Description("充电时长")]
[FormFieldTable]
[FormFieldEdit]
public int HOUR { get; set; }
}
}