mh_sms/APT.BaseData.Domain/Entities/FM/T_FM_MESSAGE_TEMPLATE.cs

31 lines
757 B
C#
Raw Permalink Normal View History

2024-04-12 16:50:28 +08:00
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.BaseData.Domain.Entities.FM
{
[Description("短信模板表")]
public class T_FM_MESSAGE_TEMPLATE: MesEntityBase
{
[Description("模板名称")]
[FormFieldTable]
[FormFieldEdit]
[DataFieldLength(50)]
public string NAME { get; set; }
[Description("模板ID")]
[FormFieldTable]
[FormFieldEdit]
[DataFieldLength(50)]
public string CODE { get; set; }
[Description("备注")]
[FormFieldTable]
[FormFieldEdit]
[DataFieldLength(200)]
public string REMARK { get; set; }
}
}