hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileSalaryPositionLevel.cs
Suphonchai Phoonsawat a0b3b13074 Add MetaData Table From ExistData
Change to use MySQL
2023-06-26 14:02:04 +07:00

20 lines
540 B
C#

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Profile.Service.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; }
}
}