d_sms_service/APT.MS.Domain/Entities/SC/BI/T_BI_RUNLOG.cs
2024-10-28 13:45:58 +08:00

29 lines
787 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using APT.Infrastructure.Core;
using APT.MS.Domain.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using static APT.MS.Domain.Enums.BI.BIEnums;
namespace APT.MS.Domain.Entities.BI
{
/// <summary>
/// 统计日志 按Code更新
/// </summary>
[Description("统计日志 按Code更新")]
public class T_BI_RUNLOG : MesEntityBase
{
/// <summary>
/// 表单编码
/// </summary>
[Description("表单编码")]
public string CODE { get; set; }
/// <summary>
/// 时间(可能不是创建时间)
/// </summary>
[Description("时间(可能不是创建时间)")]
public DateTime RUNDATETIME { get; set; }
}
}