diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.metadata.v7.bin b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.metadata.v7.bin index 25142eb..0492011 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.metadata.v7.bin and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.metadata.v7.bin differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.projects.v7.bin b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.projects.v7.bin index 5d077d7..ca0a2ce 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.projects.v7.bin and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/ProjectEvaluation/winformsapp1.projects.v7.bin differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/DesignTimeBuild/.dtbcache.v2 b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/DesignTimeBuild/.dtbcache.v2 index 324fbb8..b81ca0e 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/DesignTimeBuild/.dtbcache.v2 and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/DesignTimeBuild/.dtbcache.v2 differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/356f1d34-d84e-4694-9414-376c82d8e503.vsidx b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/356f1d34-d84e-4694-9414-376c82d8e503.vsidx new file mode 100644 index 0000000..c95823e Binary files /dev/null and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/356f1d34-d84e-4694-9414-376c82d8e503.vsidx differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/d6b3ee1a-6f10-4aa7-ad2c-486b667d71ec.vsidx b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/d6b3ee1a-6f10-4aa7-ad2c-486b667d71ec.vsidx deleted file mode 100644 index e65f298..0000000 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/d6b3ee1a-6f10-4aa7-ad2c-486b667d71ec.vsidx and /dev/null differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.futdcache.v2 b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.futdcache.v2 index d24dc81..a4d3c74 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.futdcache.v2 and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.futdcache.v2 differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.suo b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.suo index d358597..0da7083 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.suo and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/v17/.suo differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs index b8081bc..8492a0d 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs @@ -20,7 +20,7 @@ public partial class Form1 : Form //不创建的属性名 string[] ignore = { - "ConcurrencyStamp", "CreationTime", "CreatorId", "LastModificationTime", "LastModifierId", "TenantId", "Id" + "ConcurrencyStamp", "CreationTime", "CreatorId", "LastModificationTime", "LastModifierId", "TenantId", "Id","ExtraProperties" }; //数据库链接字符串 @@ -58,12 +58,41 @@ public partial class Form1 : Form var Description = dt.Rows[i]["Description"].ToString(); var IsKey = dt.Rows[i]["IsKey"].ToString(); var type = DbTypeStr_To_CsharpType(Type); - - var typeStr = type.Name == "String" ? "string" : type.Name; + var typeStr= type.Name;; + #region + + switch (type.Name) + { + case "String": + typeStr = "string?"; + break; + case "Boolean": + typeStr = "bool?"; + break; + case "Int32": + typeStr = "int?"; + break; + case "Decimal": + typeStr = "decimal?"; + break; + case "Guid": + typeStr = "Guid?"; + break; + case "DateTime": + typeStr = "DateTime?"; + break; + } + + #endregion context += $@"public {typeStr} {Name} {{ get; set; }}" + "\r\n"; } + if (tbname.IndexOf("Detail") == -1) + { + context += $"public List<{tbname}Detail> Details = new List<{tbname}Detail>();"; + } + context += "}\r\n"; //创建文件夹 diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.dll b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.dll index 9e13a5e..9f0726b 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.dll and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.dll differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.pdb b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.pdb index e6d3747..2ffbef0 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.pdb and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/WinFormsApp1.pdb differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogActions.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogActions.cs deleted file mode 100644 index 1955267..0000000 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogActions.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.Collections.Generic; -using Volo.Abp.Domain.Entities.Auditing; -public class AbpAuditLogActions : AuditedAggregateRoot -{ -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 Int32 ExecutionDuration { get; set; } -public string ExtraProperties { get; set; } -} - diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogs.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogs.cs deleted file mode 100644 index 791e345..0000000 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogs.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using Volo.Abp.Domain.Entities.Auditing; -public class AbpAuditLogs : AuditedAggregateRoot -{ -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 Int32 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 Int32 HttpStatusCode { get; set; } -public string ExtraProperties { get; set; } -} - diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpSettings.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpSettings.cs deleted file mode 100644 index ea1a8e3..0000000 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpSettings.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using System.Collections.Generic; -using Volo.Abp.Domain.Entities.Auditing; -public class AbpSettings : AuditedAggregateRoot -{ -public string Name { get; set; } -public string Value { get; set; } -public string ProviderName { get; set; } -public string ProviderKey { get; set; } -} - diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs index a714176..5f66b49 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs @@ -3,26 +3,26 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class CheckJob : AuditedAggregateRoot { -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -} +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJobDetail.cs index 4310b7b..d2659a9 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJobDetail.cs @@ -3,28 +3,28 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class CheckJobDetail : AuditedAggregateRoot { -public string Order { get; set; } -public string CustomerItemCode { get; set; } -public string Qty_Uom { get; set; } -public Decimal Qty_Qty { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string ContainerCode { get; set; } -public string PackingCode { get; set; } -public string Lot { get; set; } -public string Batch_SupplierBatch { get; set; } -public DateTime Batch_ProduceDate { get; set; } -public string LocationCode { get; set; } -public string WarehouseCode { get; set; } -public DateTime Batch_ExpireDate { get; set; } +public string? Order { get; set; } +public string? CustomerItemCode { get; set; } +public string? Qty_Uom { get; set; } +public decimal? Qty_Qty { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? ContainerCode { get; set; } +public string? PackingCode { get; set; } +public string? Lot { get; set; } +public string? Batch_SupplierBatch { get; set; } +public DateTime? Batch_ProduceDate { get; set; } +public string? LocationCode { get; set; } +public string? WarehouseCode { get; set; } +public DateTime? Batch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs index c1616f4..d1247a1 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs @@ -3,32 +3,32 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class CountJob : AuditedAggregateRoot { -public string CountPlanNumber { get; set; } -public Int32 CountStage { get; set; } -public string ExtraProperties { get; set; } -public string Remark { get; set; } -public string Company { get; set; } -public string Worker { get; set; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -public string Description { get; set; } -public Int32 Type { get; set; } -public Int32 CountMethod { get; set; } -public Int32 CountCreateType { get; set; } -public Int32 CountDoingType { get; set; } -} +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public string? Description { get; set; } +public int? Type { get; set; } +public int? CountMethod { get; set; } +public int? CountCreateType { get; set; } +public int? CountDoingType { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJobDetail.cs index eee7ece..536d3a4 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJobDetail.cs @@ -3,31 +3,31 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class CountJobDetail : AuditedAggregateRoot { -public string CountLabel { get; set; } -public string InventoryQty_Uom { get; set; } -public Decimal InventoryQty_Qty { get; set; } -public string CountQty_Operator { get; set; } -public Decimal CountQty_Qty { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string ContainerCode { get; set; } -public string PackingCode { get; set; } -public string Lot { get; set; } -public string Batch_SupplierBatch { get; set; } -public DateTime Batch_ProduceDate { get; set; } -public string LocationCode { get; set; } -public string WarehouseCode { get; set; } -public string CountQty_Description { get; set; } -public DateTime CountQty_Time { get; set; } -public DateTime Batch_ExpireDate { get; set; } +public string? CountLabel { get; set; } +public string? InventoryQty_Uom { get; set; } +public decimal? InventoryQty_Qty { get; set; } +public string? CountQty_Operator { get; set; } +public decimal? CountQty_Qty { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? ContainerCode { get; set; } +public string? PackingCode { get; set; } +public string? Lot { get; set; } +public string? Batch_SupplierBatch { get; set; } +public DateTime? Batch_ProduceDate { get; set; } +public string? LocationCode { get; set; } +public string? WarehouseCode { get; set; } +public string? CountQty_Description { get; set; } +public DateTime? CountQty_Time { get; set; } +public DateTime? Batch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs index 98c5458..625067d 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs @@ -3,28 +3,28 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class DeliverJob : AuditedAggregateRoot { -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -public string CustomerAddressCode { get; set; } -} +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public string? CustomerAddressCode { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJobDetail.cs index 1471a15..a835562 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJobDetail.cs @@ -3,48 +3,48 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class DeliverJobDetail : AuditedAggregateRoot { -public string FromLocationCode { get; set; } -public DateTime ExpiredTime { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public string FromContainerCode { get; set; } -public string FromLot { get; set; } -public string FromPackingCode { get; set; } -public Int32 FromStatus { get; set; } -public string FromWarehouseCode { get; set; } -public string ToContainerCode { get; set; } -public string ToLocationCode { get; set; } -public string ToLot { get; set; } -public string ToPackingCode { get; set; } -public Int32 ToStatus { get; set; } -public string ToWarehouseCode { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } +public string? FromLocationCode { get; set; } +public DateTime? ExpiredTime { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public string? FromContainerCode { get; set; } +public string? FromLot { get; set; } +public string? FromPackingCode { get; set; } +public int? FromStatus { get; set; } +public string? FromWarehouseCode { get; set; } +public string? ToContainerCode { get; set; } +public string? ToLocationCode { get; set; } +public string? ToLot { get; set; } +public string? ToPackingCode { get; set; } +public int? ToStatus { get; set; } +public string? ToWarehouseCode { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs index dac5269..4e2e9e7 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs @@ -3,33 +3,33 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class InspectJob : AuditedAggregateRoot { -public string InspectNumber { get; set; } -public string ReceiptNumber { get; set; } -public string ArriveNoticeNumber { get; set; } -public string AsnNumber { get; set; } -public string RpNumber { get; set; } -public string PoNumber { get; set; } -public string SupplierCode { get; set; } -public Int32 NextAction { get; set; } -public string ExtraProperties { get; set; } -public string Remark { get; set; } -public string Company { get; set; } -public string Worker { get; set; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -} +public string? InspectNumber { get; set; } +public string? ReceiptNumber { get; set; } +public string? ArriveNoticeNumber { get; set; } +public string? AsnNumber { get; set; } +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobDetail.cs index 3818252..b62da87 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobDetail.cs @@ -3,50 +3,50 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class InspectJobDetail : AuditedAggregateRoot { -public string PoNumber { get; set; } -public string PoLine { get; set; } -public Int32 InspectType { get; set; } -public Decimal SamplePercent { get; set; } -public string ReceiveQty_Uom { get; set; } -public Decimal ReceiveQty_Qty { get; set; } -public Decimal InspectQty { get; set; } -public Decimal GoodQty { get; set; } -public string FailedReason { get; set; } -public Decimal FailedQty { get; set; } -public Decimal CrackQty { get; set; } -public string InspectUser_Name { get; set; } -public string InspectUser_Phone { get; set; } -public string InspectUser_Email { get; set; } -public Decimal NotPassedQty { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } +public string? PoNumber { get; set; } +public string? PoLine { get; set; } +public int? InspectType { get; set; } +public decimal? SamplePercent { get; set; } +public string? ReceiveQty_Uom { get; set; } +public decimal? ReceiveQty_Qty { get; set; } +public decimal? InspectQty { get; set; } +public decimal? GoodQty { get; set; } +public string? FailedReason { get; set; } +public decimal? FailedQty { get; set; } +public decimal? CrackQty { get; set; } +public string? InspectUser_Name { get; set; } +public string? InspectUser_Phone { get; set; } +public string? InspectUser_Email { get; set; } +public decimal? NotPassedQty { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobSummaryDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobSummaryDetail.cs index 81d95e8..e783010 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobSummaryDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobSummaryDetail.cs @@ -3,50 +3,50 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class InspectJobSummaryDetail : AuditedAggregateRoot { -public string PoNumber { get; set; } -public string PoLine { get; set; } -public Int32 InspectType { get; set; } -public Decimal SamplePercent { get; set; } -public string ReceiveQty_Uom { get; set; } -public Decimal ReceiveQty_Qty { get; set; } -public Decimal InspectQty { get; set; } -public Decimal GoodQty { get; set; } -public string FailedReason { get; set; } -public Decimal FailedQty { get; set; } -public Decimal CrackQty { get; set; } -public string InspectUser_Name { get; set; } -public string InspectUser_Phone { get; set; } -public string InspectUser_Email { get; set; } -public Decimal NotPassedQty { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } +public string? PoNumber { get; set; } +public string? PoLine { get; set; } +public int? InspectType { get; set; } +public decimal? SamplePercent { get; set; } +public string? ReceiveQty_Uom { get; set; } +public decimal? ReceiveQty_Qty { get; set; } +public decimal? InspectQty { get; set; } +public decimal? GoodQty { get; set; } +public string? FailedReason { get; set; } +public decimal? FailedQty { get; set; } +public decimal? CrackQty { get; set; } +public string? InspectUser_Name { get; set; } +public string? InspectUser_Phone { get; set; } +public string? InspectUser_Email { get; set; } +public decimal? NotPassedQty { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs index 7e18724..f837ce2 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs @@ -3,28 +3,28 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class IssueJob : AuditedAggregateRoot { -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -} +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJobDetail.cs index a8183c6..de4b9f7 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJobDetail.cs @@ -3,48 +3,48 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class IssueJobDetail : AuditedAggregateRoot { -public string ToRequestLocationCode { get; set; } -public string ToLocationCode { get; set; } -public string ProdLine { get; set; } -public string WorkStation { get; set; } -public DateTime ExpiredTime { get; set; } -public string Operation { get; set; } -public Int32 DistributionType { get; set; } -public Int32 TruncType { get; set; } -public Decimal RoundedQty { get; set; } -public Int32 PlannedSplitRule { get; set; } -public DateTime PlanBeginTime { get; set; } -public Decimal DeliveryQty { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } -public string FromRequestLocationCode { get; set; } +public string? ToRequestLocationCode { get; set; } +public string? ToLocationCode { get; set; } +public string? ProdLine { get; set; } +public string? WorkStation { get; set; } +public DateTime? ExpiredTime { get; set; } +public string? Operation { get; set; } +public int? DistributionType { get; set; } +public int? TruncType { get; set; } +public decimal? RoundedQty { get; set; } +public int? PlannedSplitRule { get; set; } +public DateTime? PlanBeginTime { get; set; } +public decimal? DeliveryQty { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } +public string? FromRequestLocationCode { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs index e552b52..9a87e55 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs @@ -3,34 +3,34 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class JisDeliverJob : AuditedAggregateRoot { -public string Customer { get; set; } -public string CustomerAddressCode { get; set; } -public string CustomerLocationCode { get; set; } -public string CustomerWarehouseCode { get; set; } -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -public string Position { get; set; } -} +public string? Customer { get; set; } +public string? CustomerAddressCode { get; set; } +public string? CustomerLocationCode { get; set; } +public string? CustomerWarehouseCode { get; set; } +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public string? Position { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJobDetail.cs index 6b90d8b..c8f31bc 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJobDetail.cs @@ -3,15 +3,15 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class JisDeliverJobDetail : AuditedAggregateRoot { -public string ContainerCode { get; set; } -public string ContainerName { get; set; } -public string ContainerDesc { get; set; } -public Decimal ItemQty { get; set; } -public string FromLocationCode { get; set; } -public string ToLocationCode { get; set; } -public Int32 Status { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } +public string? ContainerCode { get; set; } +public string? ContainerName { get; set; } +public string? ContainerDesc { get; set; } +public decimal? ItemQty { get; set; } +public string? FromLocationCode { get; set; } +public string? ToLocationCode { get; set; } +public int? Status { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs index d381237..4c24d81 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs @@ -3,28 +3,28 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class ProductReceiveJob : AuditedAggregateRoot { -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -} +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJobDetail.cs index 80c5b45..ddeaa9e 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJobDetail.cs @@ -3,37 +3,37 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class ProductReceiveJobDetail : AuditedAggregateRoot { -public string ProdLine { get; set; } -public string RawLocation { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } +public string? ProdLine { get; set; } +public string? RawLocation { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs index c99016c..7d753a3 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs @@ -3,34 +3,34 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class PurchaseReceiptJob : AuditedAggregateRoot { -public string ArriveNoticeNumber { get; set; } -public string AsnNumber { get; set; } -public string RpNumber { get; set; } -public string PoNumber { get; set; } -public string SupplierCode { get; set; } -public string SupplierName { get; set; } -public Int32 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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -public DateTime ArriveTime { get; set; } -} +public string? ArriveNoticeNumber { get; set; } +public string? AsnNumber { get; set; } +public string? RpNumber { get; set; } +public string? PoNumber { get; set; } +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public DateTime? ArriveTime { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJobDetail.cs index b2190f2..3664603 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJobDetail.cs @@ -3,39 +3,39 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class PurchaseReceiptJobDetail : AuditedAggregateRoot { -public string PoNumber { get; set; } -public string PoLine { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } -public string ItemEqLevel { get; set; } -public string LabelEqLevel { get; set; } +public string? PoNumber { get; set; } +public string? PoLine { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } +public string? ItemEqLevel { get; set; } +public string? LabelEqLevel { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs index 61e292e..d1c8d78 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs @@ -3,30 +3,30 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class PurchaseReturnJob : AuditedAggregateRoot { -public string ArriveNoticeNumber { get; set; } -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -} +public string? ArriveNoticeNumber { get; set; } +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJobDetail.cs index a7dad8f..0d5d07c 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJobDetail.cs @@ -3,37 +3,37 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class PurchaseReturnJobDetail : AuditedAggregateRoot { -public string PoNumber { get; set; } -public string PoLine { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } +public string? PoNumber { get; set; } +public string? PoLine { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs index 6dcc2d3..02ef3c7 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs @@ -3,34 +3,34 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class PutawayJob : AuditedAggregateRoot { -public string SupplierCode { get; set; } -public string InspectNumber { get; set; } -public string ReceiptNumber { get; set; } -public string ArriveNoticeNumber { get; set; } -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; } -public string WarehouseCode { get; set; } -public string Number { get; set; } -public string UpStreamJobNumber { get; set; } -public string JobDescription { get; set; } -public Int32 JobType { get; set; } -public Int32 JobStatus { get; set; } -public Int32 Priority { get; set; } -public Int32 PriorityIncrement { get; set; } -public string WorkGroupCode { get; set; } -public Boolean IsAutoComplete { get; set; } -public Guid AcceptUserId { get; set; } -public string AcceptUserName { get; set; } -public DateTime AcceptTime { get; set; } -public Guid CompleteUserId { get; set; } -public string CompleteUserName { get; set; } -public DateTime CompleteTime { get; set; } -public Int32 PutawayJobType { get; set; } -} +public string? SupplierCode { get; set; } +public string? InspectNumber { get; set; } +public string? ReceiptNumber { get; set; } +public string? ArriveNoticeNumber { get; set; } +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; } +public string? WarehouseCode { get; set; } +public string? Number { get; set; } +public string? UpStreamJobNumber { get; set; } +public string? JobDescription { get; set; } +public int? JobType { get; set; } +public int? JobStatus { get; set; } +public int? Priority { get; set; } +public int? PriorityIncrement { get; set; } +public string? WorkGroupCode { get; set; } +public bool? IsAutoComplete { get; set; } +public Guid? AcceptUserId { get; set; } +public string? AcceptUserName { get; set; } +public DateTime? AcceptTime { get; set; } +public Guid? CompleteUserId { get; set; } +public string? CompleteUserName { get; set; } +public DateTime? CompleteTime { get; set; } +public int? PutawayJobType { get; set; } +public List Details = new List();} diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJobDetail.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJobDetail.cs index 0f2cc7c..3abe022 100644 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJobDetail.cs +++ b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJobDetail.cs @@ -3,38 +3,38 @@ using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; public class PutawayJobDetail : AuditedAggregateRoot { -public string PoNumber { get; set; } -public string PoLine { get; set; } -public string FromLocationCode { get; set; } -public Guid MasterID { get; set; } -public string Number { get; set; } -public string Remark { get; set; } -public string WarehouseCode { get; set; } -public Guid Item_Id { get; set; } -public string Item_Name { get; set; } -public string Item_Desc1 { get; set; } -public string Item_Desc2 { get; set; } -public string ItemCode { get; set; } -public string StdPack_PackUom { get; set; } -public Decimal StdPack_PackQty { get; set; } -public Int32 Status { get; set; } -public string RecommendContainerCode { get; set; } -public string RecommendPackingCode { get; set; } -public string RecommendBatch_SupplierBatch { get; set; } -public DateTime RecommendBatch_ProduceDate { get; set; } -public string RecommendLot { get; set; } -public string RecommendLocationCode { get; set; } -public string RecommendQty_Uom { get; set; } -public Decimal RecommendQty_Qty { get; set; } -public string HandledContainerCode { get; set; } -public string HandledPackingCode { get; set; } -public string HandledBatch_SupplierBatch { get; set; } -public DateTime HandledBatch_ProduceDate { get; set; } -public string HandledLot { get; set; } -public string HandledLocationCode { get; set; } -public string HandledQty_Uom { get; set; } -public Decimal HandledQty_Qty { get; set; } -public DateTime HandledBatch_ExpireDate { get; set; } -public DateTime RecommendBatch_ExpireDate { get; set; } +public string? PoNumber { get; set; } +public string? PoLine { get; set; } +public string? FromLocationCode { get; set; } +public Guid? MasterID { get; set; } +public string? Number { get; set; } +public string? Remark { get; set; } +public string? WarehouseCode { get; set; } +public Guid? Item_Id { get; set; } +public string? Item_Name { get; set; } +public string? Item_Desc1 { get; set; } +public string? Item_Desc2 { get; set; } +public string? ItemCode { get; set; } +public string? StdPack_PackUom { get; set; } +public decimal? StdPack_PackQty { get; set; } +public int? Status { get; set; } +public string? RecommendContainerCode { get; set; } +public string? RecommendPackingCode { get; set; } +public string? RecommendBatch_SupplierBatch { get; set; } +public DateTime? RecommendBatch_ProduceDate { get; set; } +public string? RecommendLot { get; set; } +public string? RecommendLocationCode { get; set; } +public string? RecommendQty_Uom { get; set; } +public decimal? RecommendQty_Qty { get; set; } +public string? HandledContainerCode { get; set; } +public string? HandledPackingCode { get; set; } +public string? HandledBatch_SupplierBatch { get; set; } +public DateTime? HandledBatch_ProduceDate { get; set; } +public string? HandledLot { get; set; } +public string? HandledLocationCode { get; set; } +public string? HandledQty_Uom { get; set; } +public decimal? HandledQty_Qty { get; set; } +public DateTime? HandledBatch_ExpireDate { get; set; } +public DateTime? RecommendBatch_ExpireDate { get; set; } } diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/__EFMigrationsHistory.cs b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/__EFMigrationsHistory.cs deleted file mode 100644 index 615757b..0000000 --- a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/__EFMigrationsHistory.cs +++ /dev/null @@ -1,9 +0,0 @@ -using System; -using System.Collections.Generic; -using Volo.Abp.Domain.Entities.Auditing; -public class __EFMigrationsHistory : AuditedAggregateRoot -{ -public string MigrationId { get; set; } -public string ProductVersion { get; set; } -} - diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.dll b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.dll index 9e13a5e..9f0726b 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.dll and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.dll differ diff --git a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.pdb b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.pdb index e6d3747..2ffbef0 100644 Binary files a/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.pdb and b/Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/obj/Debug/net6.0-windows/WinFormsApp1.pdb differ