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

20 lines
580 B
C#

using BMA.EHR.Profile.Service.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Profile.Service.Models.HR
{
public class ProfileSalaryOrganization
{
[ForeignKey("ProfileSalary"), Comment("ไม่ใช้")]
public int Id { get; set; }
[MaxLength(200)]
public string Comment { get; set; }
// public OrganizationEntity Organization { get; set; }
// public ProfileSalary ProfileSalary { get; set; }
}
}