20 lines
531 B
C#
20 lines
531 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
|
{
|
|
public class ProfileSalaryPositionLevel
|
|
{
|
|
[ForeignKey("ProfileSalary"), Comment("ไม่ใช้")]
|
|
public int Id { get; set; }
|
|
|
|
[MaxLength(200)]
|
|
public string Comment { get; set; }
|
|
|
|
// public PositionLevel PositionLevel { get; set; }
|
|
|
|
// public ProfileSalary ProfileSalary { get; set; }
|
|
}
|
|
}
|
|
|