Files
zszq-trs/Framework/YLErp.Core/DBModels/UnderlyingBlockConfig.cs
T
2024-05-09 14:06:26 +08:00

28 lines
572 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.DBModels
{
/// <summary>
/// 板块性质配置
/// </summary>
[Table("underlying_block_config")]
public class UnderlyingBlockConfig : DBModelWithOperator
{
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 是否分组
/// </summary>
public int Group { get; set; }
}
[NotMapped]
public class UnderlyingBlockConfigDto : UnderlyingBlockConfig
{
}
}