25 lines
608 B
C#
25 lines
608 B
C#
using System;
|
|
using FreeSql.DataAnnotations;
|
|
using ZhonTai.Admin.Core.Entities;
|
|
using NPP.SmartSchedue.Api.Contracts.Core.Consts;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts.Domain.Personnel;
|
|
|
|
/// <summary>
|
|
/// 资质实体
|
|
/// </summary>
|
|
[Table(Name = DbConsts.TableNamePrefix + "qualification")]
|
|
public partial class QualificationEntity : EntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
[Column(StringLength = 500)]
|
|
public string Description { get; set; }
|
|
} |