แก้รายงาน รองรับด้านแบบ Multi ในบัญชี 1

This commit is contained in:
Suphonchai Phoonsawat 2023-06-07 15:34:06 +07:00
parent aeb61be218
commit 9c24102b62
7 changed files with 78 additions and 8 deletions

View file

@ -1,9 +1,9 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Report.Service.Models;
using BMA.EHR.MetaData.Service.Models;
namespace BMA.EHR.Profile.Service.Models
namespace BMA.EHR.Organization.Service.Models
{
public class PositionMasterEntity : EntityBase
{
@ -65,8 +65,12 @@ namespace BMA.EHR.Profile.Service.Models
[Column(Order = 14), Comment("IsDirector")]
public bool? IsDirector { get; set; }
//public List<AvailablePositionLevelEntity> AvailablePositionLevels { get; } = new();
public string? PositionPathSideObject { get; set; }
public string? PositionExecutiveSideObject { get; set; }
//public List<AvailablePositionLevelEntity> AvailablePositionLevels { get; } = new();
//public List<PositionMasterHistoryEntity> PositionMasterHistorys { get; } = new();
}
}