2023-06-26 14:02:04 +07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2023-06-26 15:18:39 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
2023-06-26 14:02:04 +07:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|