บันทึกเงินเดือนของผู้บรรจุ

This commit is contained in:
Suphonchai Phoonsawat 2023-09-02 13:53:56 +07:00
parent 69bd9c0a68
commit bb9a0bc73e
6 changed files with 16338 additions and 6 deletions

View file

@ -32,5 +32,14 @@ namespace BMA.EHR.Domain.Models.Commands.Core
[Comment("รหัสอ้างอิงไปยังข้อมูลผู้บรรจุ")]
public Guid? RefPlacementProfileId { get; set; }
[Comment("เงินเดือน")]
public double? Amount { get; set; }
[Comment("เงินประจำตำแหน่ง")]
public double? PositionSalaryAmount { get; set; }
[Comment("เงินค่าตอบแทนรายเดือน")]
public double? MouthSalaryAmount { get; set; }
}
}