Add MetaData Table From ExistData
Change to use MySQL
This commit is contained in:
parent
89de09d213
commit
a0b3b13074
136 changed files with 3438 additions and 1237 deletions
20
BMA.EHR.Domain/Models/HR/ProfileSalaryPositionNumber.cs
Normal file
20
BMA.EHR.Domain/Models/HR/ProfileSalaryPositionNumber.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
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 ProfileSalaryPositionNumber
|
||||
{
|
||||
[ForeignKey("ProfileSalary"), Comment("ไม่ใช้")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[MaxLength(200)]
|
||||
public string Comment { get; set; }
|
||||
|
||||
// public PositionNumberEntity PositionNumber { get; set; }
|
||||
|
||||
// public ProfileSalary ProfileSalary { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue