20240824062632_AddInformation.Designer.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // <auto-generated />
  2. using System;
  3. using Microsoft.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore.Infrastructure;
  5. using Microsoft.EntityFrameworkCore.Migrations;
  6. using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
  7. using Repository;
  8. namespace Repository.Migrations
  9. {
  10. [DbContext(typeof(TeamDataContext))]
  11. [Migration("20240824062632_AddInformation")]
  12. partial class AddInformation
  13. {
  14. protected override void BuildTargetModel(ModelBuilder modelBuilder)
  15. {
  16. #pragma warning disable 612, 618
  17. modelBuilder
  18. .HasAnnotation("ProductVersion", "3.1.32");
  19. modelBuilder.Entity("Repository.Entiies.Information", b =>
  20. {
  21. b.Property<Guid>("Id")
  22. .ValueGeneratedOnAdd()
  23. .HasColumnType("TEXT");
  24. b.Property<DateTime>("CreateTime")
  25. .HasColumnType("TEXT");
  26. b.Property<string>("OperatorCode")
  27. .HasColumnType("TEXT");
  28. b.Property<string>("ProCode")
  29. .HasColumnType("TEXT");
  30. b.Property<int>("SpendTime")
  31. .HasColumnType("INTEGER");
  32. b.HasKey("Id");
  33. b.ToTable("Informations");
  34. });
  35. modelBuilder.Entity("Repository.Entiies.ParamLog", b =>
  36. {
  37. b.Property<Guid>("Id")
  38. .ValueGeneratedOnAdd()
  39. .HasColumnType("TEXT");
  40. b.Property<string>("Content")
  41. .HasColumnType("TEXT");
  42. b.Property<DateTime>("Occured")
  43. .HasColumnType("TEXT");
  44. b.Property<int>("OperateAction")
  45. .HasColumnType("INTEGER");
  46. b.Property<string>("OperateObject")
  47. .HasColumnType("TEXT");
  48. b.Property<string>("UserName")
  49. .HasColumnType("TEXT");
  50. b.HasKey("Id");
  51. b.ToTable("ParamLogs");
  52. });
  53. modelBuilder.Entity("Repository.Entiies.StatisticsLog", b =>
  54. {
  55. b.Property<Guid>("Id")
  56. .ValueGeneratedOnAdd()
  57. .HasColumnType("TEXT");
  58. b.Property<int>("RequestCode")
  59. .HasColumnType("INTEGER");
  60. b.Property<int>("RequstType")
  61. .HasColumnType("INTEGER");
  62. b.Property<DateTime>("Timestamp")
  63. .HasColumnType("TEXT");
  64. b.Property<int>("TraceState")
  65. .HasColumnType("INTEGER");
  66. b.HasKey("Id");
  67. b.ToTable("StatisticsLogs");
  68. });
  69. modelBuilder.Entity("Repository.Entiies.TestResult", b =>
  70. {
  71. b.Property<Guid>("Id")
  72. .ValueGeneratedOnAdd()
  73. .HasColumnType("TEXT");
  74. b.Property<string>("Barcode")
  75. .HasColumnType("TEXT");
  76. b.Property<DateTime>("Datetime")
  77. .HasColumnType("TEXT");
  78. b.Property<int>("Juge")
  79. .HasColumnType("INTEGER");
  80. b.Property<double>("Result")
  81. .HasColumnType("REAL");
  82. b.HasKey("Id");
  83. b.ToTable("ProductResult");
  84. });
  85. #pragma warning restore 612, 618
  86. }
  87. }
  88. }