29 lines
787 B
C#
29 lines
787 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|