You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
576 B
21 lines
576 B
using AX.WebDrillServer.Enums; |
|
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace AX.WebDrillServer.Models |
|
{ |
|
/// <summary> |
|
/// 组织机构表 |
|
/// </summary> |
|
public class Organization : EntityBase |
|
{ |
|
[Comment("组织机构编码")] |
|
public string? Code { get; set; } |
|
[Comment("组织机构名称")] |
|
public string? Name { get; set; } |
|
[Comment("组织机构级别")] |
|
public OrganizationLevel Level { get; set; } |
|
[Comment("组织机构说明")] |
|
public string? Introductions { get; set; } |
|
|
|
} |
|
}
|
|
|