郑勃旭 2 years ago
parent
commit
8531069e12
  1. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.metadata.v7.bin
  2. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.projects.v7.bin
  3. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/356f1d34-d84e-4694-9414-376c82d8e503.vsidx
  4. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/c03ab1ae-d903-42c7-aaf3-6fddb5fa73cf.vsidx
  5. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.suo
  6. 2
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs
  7. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.dll
  8. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.pdb
  9. 13
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogActions.cs
  10. 25
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogs.cs
  11. 11
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpSettings.cs
  12. 12
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AppExportCustomUserSettings.cs
  13. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs
  14. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs
  15. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs
  16. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs
  17. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs
  18. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs
  19. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs
  20. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs
  21. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs
  22. 3
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs
  23. 9
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/__EFMigrationsHistory.cs
  24. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.dll
  25. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.pdb

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.metadata.v7.bin

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.projects.v7.bin

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/356f1d34-d84e-4694-9414-376c82d8e503.vsidx

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/c03ab1ae-d903-42c7-aaf3-6fddb5fa73cf.vsidx

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.suo

Binary file not shown.

2
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs

@ -90,7 +90,7 @@ public partial class Form1 : Form
if (tbname.IndexOf("Detail") == -1)
{
context += $"public List<{tbname}Detail> Details = new List<{tbname}Detail>();";
context += $"public List<{tbname}Detail> Details {{ get; set; }} = new();" + "\r\n";
}
context += "}\r\n";

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.dll

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.pdb

Binary file not shown.

13
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogActions.cs

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class AbpAuditLogActions : AuditedAggregateRoot<Guid>
{
public Guid? AuditLogId { get; set; }
public string? ServiceName { get; set; }
public string? MethodName { get; set; }
public string? Parameters { get; set; }
public DateTime? ExecutionTime { get; set; }
public int? ExecutionDuration { get; set; }
public List<AbpAuditLogActionsDetail> Details { get; set; } = new();}

25
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogs.cs

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class AbpAuditLogs : AuditedAggregateRoot<Guid>
{
public string? ApplicationName { get; set; }
public Guid? UserId { get; set; }
public string? UserName { get; set; }
public string? TenantName { get; set; }
public Guid? ImpersonatorUserId { get; set; }
public Guid? ImpersonatorTenantId { get; set; }
public DateTime? ExecutionTime { get; set; }
public int? ExecutionDuration { get; set; }
public string? ClientIpAddress { get; set; }
public string? ClientName { get; set; }
public string? ClientId { get; set; }
public string? CorrelationId { get; set; }
public string? BrowserInfo { get; set; }
public string? HttpMethod { get; set; }
public string? Url { get; set; }
public string? Exceptions { get; set; }
public string? Comments { get; set; }
public int? HttpStatusCode { get; set; }
public List<AbpAuditLogsDetail> Details { get; set; } = new();}

11
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpSettings.cs

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class AbpSettings : AuditedAggregateRoot<Guid>
{
public string? Name { get; set; }
public string? Value { get; set; }
public string? ProviderName { get; set; }
public string? ProviderKey { get; set; }
public List<AbpSettingsDetail> Details { get; set; } = new();}

12
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AppExportCustomUserSettings.cs

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class AppExportCustomUserSettings : AuditedAggregateRoot<Guid>
{
public Guid? ExportUserId { get; set; }
public string? ExportUserName { get; set; }
public string? ExportColumnName { get; set; }
public string? ExportTableName { get; set; }
public int? CustomUserSetting { get; set; }
public List<AppExportCustomUserSettingsDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs

@ -4,7 +4,6 @@ using Volo.Abp.Domain.Entities.Auditing;
public class CheckJob : AuditedAggregateRoot<Guid>
{
public string? DeliverNoteNumber { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -24,5 +23,5 @@ public DateTime? AcceptTime { get; set; }
public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public List<CheckJobDetail> Details = new List<CheckJobDetail>();}
public List<CheckJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs

@ -5,7 +5,6 @@ public class CountJob : AuditedAggregateRoot<Guid>
{
public string? CountPlanNumber { get; set; }
public int? CountStage { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -30,5 +29,5 @@ public int? Type { get; set; }
public int? CountMethod { get; set; }
public int? CountCreateType { get; set; }
public int? CountDoingType { get; set; }
public List<CountJobDetail> Details = new List<CountJobDetail>();}
public List<CountJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs

@ -5,7 +5,6 @@ public class DeliverJob : AuditedAggregateRoot<Guid>
{
public string? DeliverRequestNumber { get; set; }
public string? Customer { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -26,5 +25,5 @@ public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public string? CustomerAddressCode { get; set; }
public List<DeliverJobDetail> Details = new List<DeliverJobDetail>();}
public List<DeliverJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs

@ -11,7 +11,6 @@ public string? RpNumber { get; set; }
public string? PoNumber { get; set; }
public string? SupplierCode { get; set; }
public int? NextAction { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -31,5 +30,5 @@ public DateTime? AcceptTime { get; set; }
public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public List<InspectJobDetail> Details = new List<InspectJobDetail>();}
public List<InspectJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs

@ -6,7 +6,6 @@ public class IssueJob : AuditedAggregateRoot<Guid>
public string? ProdLine { get; set; }
public string? MaterialRequestNumber { get; set; }
public string? Workshop { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -26,5 +25,5 @@ public DateTime? AcceptTime { get; set; }
public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public List<IssueJobDetail> Details = new List<IssueJobDetail>();}
public List<IssueJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs

@ -11,7 +11,6 @@ public string? ProjectCode { get; set; }
public DateTime? PlanTime { get; set; }
public decimal? ContainerQty { get; set; }
public decimal? ItemQty { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -32,5 +31,5 @@ public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public string? Position { get; set; }
public List<JisDeliverJobDetail> Details = new List<JisDeliverJobDetail>();}
public List<JisDeliverJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs

@ -6,7 +6,6 @@ public class ProductReceiveJob : AuditedAggregateRoot<Guid>
public string? ProductionPlanNumber { get; set; }
public string? Workshop { get; set; }
public string? Shift { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -26,5 +25,5 @@ public DateTime? AcceptTime { get; set; }
public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public List<ProductReceiveJobDetail> Details = new List<ProductReceiveJobDetail>();}
public List<ProductReceiveJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs

@ -11,7 +11,6 @@ public string? SupplierCode { get; set; }
public string? SupplierName { get; set; }
public int? Type { get; set; }
public string? TimeWindow { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -32,5 +31,5 @@ public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public DateTime? ArriveTime { get; set; }
public List<PurchaseReceiptJobDetail> Details = new List<PurchaseReceiptJobDetail>();}
public List<PurchaseReceiptJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs

@ -8,7 +8,6 @@ public string? PurchaseReceiptNumber { get; set; }
public string? AsnNumber { get; set; }
public string? PoNumber { get; set; }
public string? SupplierCode { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -28,5 +27,5 @@ public DateTime? AcceptTime { get; set; }
public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public List<PurchaseReturnJobDetail> Details = new List<PurchaseReturnJobDetail>();}
public List<PurchaseReturnJobDetail> Details { get; set; } = new();}

3
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs

@ -11,7 +11,6 @@ public string? AsnNumber { get; set; }
public string? RpNumber { get; set; }
public string? PoNumber { get; set; }
public string? ProductReceiptNumber { get; set; }
public string? ExtraProperties { get; set; }
public string? Remark { get; set; }
public string? Company { get; set; }
public string? Worker { get; set; }
@ -32,5 +31,5 @@ public Guid? CompleteUserId { get; set; }
public string? CompleteUserName { get; set; }
public DateTime? CompleteTime { get; set; }
public int? PutawayJobType { get; set; }
public List<PutawayJobDetail> Details = new List<PutawayJobDetail>();}
public List<PutawayJobDetail> Details { get; set; } = new();}

9
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/__EFMigrationsHistory.cs

@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class __EFMigrationsHistory : AuditedAggregateRoot<Guid>
{
public string? MigrationId { get; set; }
public string? ProductVersion { get; set; }
public List<__EFMigrationsHistoryDetail> Details { get; set; } = new();}

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.dll

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.pdb

Binary file not shown.
Loading…
Cancel
Save