ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
20
Models/HR/ProfileSalaryPositionLevel.cs
Normal file
20
Models/HR/ProfileSalaryPositionLevel.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
using BMA.EHR.MetaData.Service.Models;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models.HR
|
||||
{
|
||||
public class ProfileSalaryPositionLevel
|
||||
{
|
||||
[ForeignKey("ProfileSalary")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[MaxLength(200)]
|
||||
public string Comment { get; set; }
|
||||
|
||||
// public PositionLevel PositionLevel { get; set; }
|
||||
|
||||
// public ProfileSalary ProfileSalary { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue