using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace Mirle.Component.Database.Model.WES
{
///
/// 歷史儲位狀態
///
[Table("HIS_LOC_STATUS")]
public class HisLocStatusDto : CurLocStatusDto
{
///
/// 寫入時間
///
[Column(Name = "HISTORY_TIME")]
[Required, JsonPropertyName("HISTORY_TIME"), JsonPropertyOrder(8)]
public DateTime HISTORY_TIME { get; set; } = DateTime.Now;
}
}