hrms-api-report-v1/Models/OrganizationPublishHistoryEntity.cs
Suphonchai Phoonsawat 0324e4c270 change fore new field
2023-07-16 20:01:24 +07:00

15 lines
564 B
C#

using BMA.EHR.MetaData.Service.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Organization.Service.Models
{
public class OrganizationPublishHistoryEntity : EntityBase
{
[Column(Order = 1), Comment("รายละเอียดการแก้ไข")]
public string Detail { get; set; } = string.Empty;
[Column(Order = 2), Comment("เก็บ Object ที่มีการอัพเดตในระบบ")]
public string ObjectValue { get; set; } = string.Empty;
}
}