You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
660 B
21 lines
660 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Mirle.Component.Database.Model.WES
|
|
{
|
|
/// <summary>
|
|
/// 歷史軟體控制模式類別
|
|
/// </summary>
|
|
[Table("HIS_SOFTWARE_OPERATION_MODE")]
|
|
public class HisSoftwareOperationModeDto : CurSoftwareOperationModeDto
|
|
{
|
|
/// <summary>
|
|
/// 寫入時間
|
|
/// </summary>
|
|
[Column(Name = "HISTORY_TIME")]
|
|
[Required, JsonPropertyName("HISTORY_TIME"), JsonPropertyOrder(6)]
|
|
public DateTime HISTORY_TIME { get; set; } = DateTime.Now;
|
|
}
|
|
}
|