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.

20 lines
609 B

8 months ago
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text.Json.Serialization;
  5. namespace Mirle.Component.Database.Model.WES
  6. {
  7. /// <summary>
  8. /// 歷史異常資訊類別
  9. /// </summary>
  10. [Table("HIS_ALARM_DATA")]
  11. public class HisAlarmDataDto : CurAlarmDataDto
  12. {
  13. /// <summary>
  14. /// 寫入時間
  15. /// </summary>
  16. [Column(Name = "HISTORY_TIME"), Required, JsonPropertyName("HISTORY_TIME"), JsonPropertyOrder(10)]
  17. public DateTime HISTORY_TIME { get; set; } = DateTime.Now;
  18. }
  19. }