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
601 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_CMD_MST")]
  11. public class HisCommandMasterDto : CurCommandMasterDto
  12. {
  13. /// <summary>
  14. /// 寫入時間
  15. /// </summary>
  16. [Column(Name = "HISTORY_TIME")]
  17. [Required, JsonPropertyName("HISTORY_TIME"), JsonPropertyOrder(18)]
  18. public DateTime HISTORY_TIME { get; set; }
  19. }
  20. }