ImYxdatum.cs 495 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_Data.Models
  4. {
  5. public partial class ImYxdatum
  6. {
  7. public int Id { get; set; }
  8. public string DataId { get; set; } = null!;
  9. public string OccTime { get; set; } = null!;
  10. public int SwState { get; set; }
  11. public string NormalOrNot { get; set; } = null!;
  12. public DateTime CreateTime { get; set; }
  13. public string? Comment { get; set; }
  14. }
  15. }