28 lines
572 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|