22 lines
458 B
C#
22 lines
458 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.Infrastructure.Utility;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.Entities
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 表单配置版本
|
|||
|
|
/// </summary>
|
|||
|
|
[Redis("ID")]
|
|||
|
|
[IgnoreT4] public class T_PF_FORM_CONFIG_VERSION : MesEntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal VERSION { get; set; }
|
|||
|
|
|
|||
|
|
public virtual ICollection<T_PF_FORM_CONFIG_VERSION_D> Nav_Details { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|