郑勃旭 2 years ago
parent
commit
e03841c04f
  1. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/c99b6401-3e11-4f8a-943d-28d0cc7b9af5.vsidx
  2. BIN
      Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/d6b3ee1a-6f10-4aa7-ad2c-486b667d71ec.vsidx
  3. 4
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/Form1.cs
  4. 14
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogActions.cs
  5. 26
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpAuditLogs.cs
  6. 11
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/AbpSettings.cs
  7. 24
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJob.cs
  8. 32
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CheckJobDetail.cs
  9. 26
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJob.cs
  10. 34
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJobDetail.cs
  11. 28
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJob.cs
  12. 60
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJobDetail.cs
  13. 36
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJob.cs
  14. 54
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobDetail.cs
  15. 54
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobSummaryDetail.cs
  16. 28
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJob.cs
  17. 52
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJobDetail.cs
  18. 34
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJob.cs
  19. 14
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/JisDeliverJobDetail.cs
  20. 28
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJob.cs
  21. 44
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJobDetail.cs
  22. 36
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJob.cs
  23. 48
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReceiptJobDetail.cs
  24. 32
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJob.cs
  25. 44
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJobDetail.cs
  26. 38
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJob.cs
  27. 46
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJobDetail.cs
  28. 9
      Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/__EFMigrationsHistory.cs

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/c99b6401-3e11-4f8a-943d-28d0cc7b9af5.vsidx

Binary file not shown.

BIN
Code/Be/CreateEntityByDBTable/WinFormsApp1/.vs/WinFormsApp1/FileContentIndex/d6b3ee1a-6f10-4aa7-ad2c-486b667d71ec.vsidx

Binary file not shown.

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

@ -59,7 +59,9 @@ public partial class Form1 : Form
var IsKey = dt.Rows[i]["IsKey"].ToString();
var type = DbTypeStr_To_CsharpType(Type);
context += $@"public {type.Name} {Name} {{ get; set; }}" + "\r\n";
var typeStr = type.Name == "String" ? "string" : type.Name;
context += $@"public {typeStr} {Name} {{ get; set; }}" + "\r\n";
}
context += "}\r\n";

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

@ -0,0 +1,14 @@
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 Int32 ExecutionDuration { get; set; }
public string ExtraProperties { get; set; }
}

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

@ -0,0 +1,26 @@
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 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; }
}

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; }
}

24
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<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; }
public String WarehouseCode { get; set; }
public String Number { get; set; }
public String UpStreamJobNumber { get; set; }
public String JobDescription { 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
}

32
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<Guid>
{
public String Order { get; set; }
public String CustomerItemCode { get; set; }
public String Qty_Uom { 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 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 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 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 LocationCode { get; set; }
public string WarehouseCode { get; set; }
public DateTime Batch_ExpireDate { get; set; }
}

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

@ -3,29 +3,29 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class CountJob : AuditedAggregateRoot<Guid>
{
public String CountPlanNumber { get; set; }
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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
public String Description { get; set; }
public string Description { get; set; }
public Int32 Type { get; set; }
public Int32 CountMethod { get; set; }
public Int32 CountCreateType { get; set; }

34
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/CountJobDetail.cs

@ -3,30 +3,30 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class CountJobDetail : AuditedAggregateRoot<Guid>
{
public String CountLabel { get; set; }
public String InventoryQty_Uom { 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 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 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 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 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 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; }
}

28
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<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; }
public String WarehouseCode { get; set; }
public String Number { get; set; }
public String UpStreamJobNumber { get; set; }
public String JobDescription { 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
public String CustomerAddressCode { get; set; }
public string CustomerAddressCode { get; set; }
}

60
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/DeliverJobDetail.cs

@ -3,47 +3,47 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class DeliverJobDetail : AuditedAggregateRoot<Guid>
{
public String FromLocationCode { 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 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 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 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 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 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 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 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 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 string ToWarehouseCode { get; set; }
public DateTime HandledBatch_ExpireDate { get; set; }
public DateTime RecommendBatch_ExpireDate { get; set; }
}

36
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<Guid>
{
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 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
}

54
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobDetail.cs

@ -3,48 +3,48 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class InspectJobDetail : AuditedAggregateRoot<Guid>
{
public String PoNumber { get; set; }
public String PoLine { get; set; }
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 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 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 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 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 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 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 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 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 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; }

54
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/InspectJobSummaryDetail.cs

@ -3,48 +3,48 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class InspectJobSummaryDetail : AuditedAggregateRoot<Guid>
{
public String PoNumber { get; set; }
public String PoLine { get; set; }
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 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 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 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 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 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 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 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 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 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; }

28
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<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; }
public String WarehouseCode { get; set; }
public String Number { get; set; }
public String UpStreamJobNumber { get; set; }
public String JobDescription { 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
}

52
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/IssueJobDetail.cs

@ -3,12 +3,12 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class IssueJobDetail : AuditedAggregateRoot<Guid>
{
public String ToRequestLocationCode { get; set; }
public String ToLocationCode { get; set; }
public String ProdLine { get; set; }
public String WorkStation { 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 string Operation { get; set; }
public Int32 DistributionType { get; set; }
public Int32 TruncType { get; set; }
public Decimal RoundedQty { get; set; }
@ -16,35 +16,35 @@ 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 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 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 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 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 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 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 FromRequestLocationCode { get; set; }
}

34
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<Guid>
{
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 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
public String Position { get; set; }
public string Position { get; set; }
}

14
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<Guid>
{
public String ContainerCode { get; set; }
public String ContainerName { get; set; }
public String ContainerDesc { 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 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 Number { get; set; }
public string Remark { get; set; }
}

28
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<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; }
public String WarehouseCode { get; set; }
public String Number { get; set; }
public String UpStreamJobNumber { get; set; }
public String JobDescription { 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
}

44
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/ProductReceiveJobDetail.cs

@ -3,35 +3,35 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class ProductReceiveJobDetail : AuditedAggregateRoot<Guid>
{
public String ProdLine { get; set; }
public String RawLocation { 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 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 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 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 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 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 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; }

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

@ -3,33 +3,33 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class PurchaseReceiptJob : AuditedAggregateRoot<Guid>
{
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 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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
public DateTime ArriveTime { get; set; }
}

48
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<Guid>
{
public String PoNumber { get; set; }
public String PoLine { 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 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 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 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 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 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 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 ItemEqLevel { get; set; }
public string LabelEqLevel { get; set; }
}

32
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<Guid>
{
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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
}

44
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PurchaseReturnJobDetail.cs

@ -3,35 +3,35 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class PurchaseReturnJobDetail : AuditedAggregateRoot<Guid>
{
public String PoNumber { get; set; }
public String PoLine { 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 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 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 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 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 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 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; }

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

@ -3,33 +3,33 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class PutawayJob : AuditedAggregateRoot<Guid>
{
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 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 string WorkGroupCode { get; set; }
public Boolean IsAutoComplete { get; set; }
public Guid AcceptUserId { get; set; }
public String AcceptUserName { get; set; }
public string AcceptUserName { get; set; }
public DateTime AcceptTime { get; set; }
public Guid CompleteUserId { get; set; }
public String CompleteUserName { get; set; }
public string CompleteUserName { get; set; }
public DateTime CompleteTime { get; set; }
public Int32 PutawayJobType { get; set; }
}

46
Code/Be/CreateEntityByDBTable/WinFormsApp1/WinFormsApp1/bin/Debug/net6.0-windows/cs_file/PutawayJobDetail.cs

@ -3,36 +3,36 @@ using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
public class PutawayJobDetail : AuditedAggregateRoot<Guid>
{
public String PoNumber { get; set; }
public String PoLine { get; set; }
public String FromLocationCode { 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 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 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 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 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 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 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; }

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; }
}
Loading…
Cancel
Save