227 changed files with 7423 additions and 6743 deletions
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.AuthDepartment; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class AuthDepartment |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class AuthDepartment : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public bool? IsActive { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public bool? IsActive { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,53 +1,54 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.AuthMenu; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class AuthMenu |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class AuthMenu : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? Icon { get; set; } |
|||
|
|||
public string? Route { get; set; } |
|||
public string? Component { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public int Sort { get; set; } |
|||
public string? CountUrl { get; set; } |
|||
|
|||
public string Portal { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ParentCode { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Permission { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? Component { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? GroupName { get; set; } |
|||
|
|||
public int GroupSort { get; set; } |
|||
|
|||
public string? CountUrl { get; set; } |
|||
public string? Icon { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? ParentCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? Permission { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Portal { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string? Route { get; set; } |
|||
|
|||
public int Sort { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,31 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.AuthUserMenu; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class AuthUserMenu |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid UserId { get; set; } |
|||
|
|||
public string MenuCode { get; set; } = null!; |
|||
|
|||
public string Portal { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class AuthUserMenu : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string MenuCode { get; set; } = null!; |
|||
|
|||
public string Portal { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public Guid UserId { get; set; } |
|||
} |
@ -1,29 +1,30 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.AuthUserWorkGroup; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class AuthUserWorkGroup |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid UserId { get; set; } |
|||
|
|||
public string WorkGroupCode { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class AuthUserWorkGroup : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public Guid UserId { get; set; } |
|||
|
|||
public string WorkGroupCode { get; set; } = null!; |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataAql; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataAql |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataAql : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? AbcClass { get; set; } |
|||
|
|||
public decimal FloorQty { get; set; } |
|||
|
|||
public decimal CeilingQty { get; set; } |
|||
|
|||
public decimal SamplePercent { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public decimal SampleQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public bool IsUsePercent { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal FloorQty { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public bool IsUsePercent { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public decimal SamplePercent { get; set; } |
|||
|
|||
public decimal SampleQty { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataArea; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataArea |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataArea : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string AreaType { get; set; } = null!; |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string AreaType { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public bool IsFunctional { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public bool IsFunctional { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,49 +1,50 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataBom; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataBom |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string Product { get; set; } = null!; |
|||
public class BasedataBom : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public string Component { get; set; } = null!; |
|||
|
|||
public string? ComponentUom { get; set; } |
|||
|
|||
public decimal ComponentQty { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
public string? ComponentUom { get; set; } |
|||
|
|||
public string? Erpop { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public int Layer { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Mfgop { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string DistributionType { get; set; } = null!; |
|||
|
|||
public string TruncType { get; set; } = null!; |
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string PlannedSplitRule { get; set; } = null!; |
|||
public string? Erpop { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public int Layer { get; set; } |
|||
|
|||
public string? Mfgop { get; set; } |
|||
|
|||
public string PlannedSplitRule { get; set; } = null!; |
|||
|
|||
public string Product { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string TruncType { get; set; } = null!; |
|||
} |
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataCalendar; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataCalendar |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Module { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataCalendar : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Module { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,31 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataCategory; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataCategory |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataCategory : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataCurrency; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataCurrency |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataCurrency : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public bool IsBasicCurrency { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public bool IsBasicCurrency { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,51 +1,52 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataCustomer; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataCustomer |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataCustomer : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? Address { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
public string? City { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? ShortName { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Address { get; set; } |
|||
public string? Contacts { get; set; } |
|||
|
|||
public string? Country { get; set; } |
|||
|
|||
public string? City { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Phone { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Fax { get; set; } |
|||
public string? Currency { get; set; } |
|||
|
|||
public string? PostId { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? Contacts { get; set; } |
|||
public string? Fax { get; set; } |
|||
|
|||
public string? Currency { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public bool IsActive { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Phone { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? PostId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? ShortName { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Type { get; set; } = null!; |
|||
} |
@ -1,43 +1,44 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataCustomerAddress; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataCustomerAddress |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string Code { get; set; } = null!; |
|||
public class BasedataCustomerAddress : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? Address { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
public string? City { get; set; } |
|||
|
|||
public string CustomerCode { get; set; } = null!; |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Address { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Contact { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? City { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public string CustomerCode { get; set; } = null!; |
|||
|
|||
public string? Desc { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataCustomerItem; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataCustomerItem |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataCustomerItem : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public string CustomerCode { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string CustomerItemCode { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Version { get; set; } |
|||
public string CustomerCode { get; set; } = null!; |
|||
|
|||
public string? CustomerPackUom { get; set; } |
|||
public string CustomerItemCode { get; set; } = null!; |
|||
|
|||
public decimal CustomerPackQty { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
public string? CustomerPackUom { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Version { get; set; } |
|||
} |
@ -1,33 +1,37 @@ |
|||
using System; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataDict; |
|||
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.BasedataDictItem; |
|||
|
|||
public partial class BasedataDict |
|||
public class BasedataDict : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public virtual ICollection<BasedataDictItem> BasedataDictItems { get; set; } = new List<BasedataDictItem>(); |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public virtual ICollection<BasedataDictItem> BasedataDictItems { get; set; } = new List<BasedataDictItem>(); |
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,35 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataDictItem; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataDictItem |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public Guid MasterId { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.BasedataDict; |
|||
|
|||
public class BasedataDictItem : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Value { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public bool Enabled { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public virtual BasedataDict Master { get; set; } = null!; |
|||
|
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Value { get; set; } |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataDock; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataDock |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataDock : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? DefaultLocationCode { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataDocumentSetting; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataDocumentSetting |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataDocumentSetting : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? TransactionType { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? NumberPrefix { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? NumberFormat { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public int NumberSerialLength { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? NumberSeparator { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? NumberFormat { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? NumberPrefix { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? NumberSeparator { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public int NumberSerialLength { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? TransactionType { get; set; } |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataErpLocation; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataErpLocation |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataErpLocation : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataInterfaceCalendar; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataInterfaceCalendar |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataInterfaceCalendar : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime BeginTime { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string Year { get; set; } = null!; |
|||
|
|||
public string Month { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime BeginTime { get; set; } |
|||
public DateTime ConvertToTime { get; set; } |
|||
|
|||
public DateTime EndTime { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public DateTime ConvertToTime { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public DateTime EndTime { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Month { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Year { get; set; } = null!; |
|||
} |
@ -1,75 +1,76 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemBasic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemBasic |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Desc1 { get; set; } |
|||
public class BasedataItemBasic : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string AbcClass { get; set; } = null!; |
|||
|
|||
public string? Desc2 { get; set; } |
|||
public string? BasicUom { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public bool CanBuy { get; set; } |
|||
|
|||
public bool CanMake { get; set; } |
|||
|
|||
public bool CanBuy { get; set; } |
|||
|
|||
public bool CanOutsourcing { get; set; } |
|||
|
|||
public bool IsRecycled { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
|
|||
public string? Category { get; set; } |
|||
|
|||
public string? Group { get; set; } |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Color { get; set; } |
|||
|
|||
public string? Configuration { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? BasicUom { get; set; } |
|||
public string? Configuration { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string AbcClass { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Project { get; set; } |
|||
public string? Desc1 { get; set; } |
|||
|
|||
public string? Version { get; set; } |
|||
public string? Desc2 { get; set; } |
|||
|
|||
public string? Eco { get; set; } |
|||
|
|||
public int Validity { get; set; } |
|||
public string? Elevel { get; set; } |
|||
|
|||
public string ValidityUnit { get; set; } = null!; |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string ManageType { get; set; } = null!; |
|||
public string? Group { get; set; } |
|||
|
|||
public string? Elevel { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public bool IsPhantom { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public bool IsRecycled { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ManageType { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? Project { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Type { get; set; } |
|||
|
|||
public int Validity { get; set; } |
|||
|
|||
public string ValidityUnit { get; set; } = null!; |
|||
|
|||
public string? Version { get; set; } |
|||
} |
@ -1,31 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemCategory; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemCategory |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataItemCategory : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string CategoryCode { get; set; } = null!; |
|||
|
|||
public string Value { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Value { get; set; } = null!; |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemGuideBook; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemGuideBook |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataItemGuideBook : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Desc1 { get; set; } |
|||
|
|||
public string? Desc2 { get; set; } |
|||
|
|||
public string? Step { get; set; } |
|||
|
|||
public string? PictureBlobName { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? PictureBlobName { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string? Step { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemPack; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemPack |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string PackCode { get; set; } = null!; |
|||
|
|||
public string? PackName { get; set; } |
|||
|
|||
public string? PackType { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataItemPack : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? BasicUom { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string PackCode { get; set; } = null!; |
|||
|
|||
public string? PackName { get; set; } |
|||
|
|||
public string? PackType { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemQuality; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemQuality |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public class BasedataItemQuality : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string InspectType { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string InspectType { get; set; } = null!; |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,45 +1,46 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemSafetyStock; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemSafetyStock |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataItemSafetyStock : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string StoreRelationType { get; set; } = null!; |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? StoreValue { get; set; } |
|||
public decimal FeedLine { get; set; } |
|||
|
|||
public decimal MaxStock { get; set; } |
|||
public decimal FeedQty { get; set; } |
|||
|
|||
public decimal MinStock { get; set; } |
|||
public string? FeedUm { get; set; } |
|||
|
|||
public decimal SafetyStock { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public decimal FeedLine { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public decimal FeedQty { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? FeedUm { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public decimal MaxStock { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal MinStock { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public decimal SafetyStock { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string StoreRelationType { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? StoreValue { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,49 +1,50 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataItemStoreRelation; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataItemStoreRelation |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataItemStoreRelation : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? AltUm { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public decimal AltUmQty { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string StoreRelationType { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? StoreValue { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public bool Enabled { get; set; } |
|||
|
|||
public string? StoreUm { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public decimal UmQty { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? AltUm { get; set; } |
|||
public bool IsFixed { get; set; } |
|||
|
|||
public decimal AltUmQty { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string PramaryUm { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public bool IsFixed { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public int MultiLoc { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string PramaryUm { get; set; } = null!; |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string StoreRelationType { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? StoreUm { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? StoreValue { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public decimal UmQty { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataMachine; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataMachine |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public Guid ProdLineId { get; set; } |
|||
public class BasedataMachine : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public Guid WorkStationId { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string Name { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public Guid ProdLineId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
|
|||
public Guid WorkStationId { get; set; } |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataProductionLine; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataProductionLine |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataProductionLine : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? WorkshopCode { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? RawLocationCode { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ProductLocationCode { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? RawLocationGroupCode { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ProductLocationCode { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? RawLocationCode { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? RawLocationGroupCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string? WorkshopCode { get; set; } |
|||
} |
@ -1,29 +1,30 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataProductionLineItem; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataProductionLineItem |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataProductionLineItem : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string ProdLineCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string ProdLineCode { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataProject; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataProject |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataProject : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? CustomerCode { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataPurchasePriceSheet; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataPurchasePriceSheet |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid SupplierId { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataPurchasePriceSheet : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid CurrencyId { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid CurrencyId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid SupplierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataSalePriceSheet; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataSalePriceSheet |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid CustomerId { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataSalePriceSheet : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public Guid CurrencyId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid CustomerId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataShift; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataShift |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataShift : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public bool EndAtNextDay { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataStdCostPriceSheet; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataStdCostPriceSheet |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataStdCostPriceSheet : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public Guid SupplierId { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public Guid CurrencyId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid SupplierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,55 +1,56 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataSupplier; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataSupplier |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? ShortName { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataSupplier : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? Address { get; set; } |
|||
|
|||
public string? Country { get; set; } |
|||
public string? Bank { get; set; } |
|||
|
|||
public string? City { get; set; } |
|||
|
|||
public string? Phone { get; set; } |
|||
|
|||
public string? Fax { get; set; } |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? PostId { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Contacts { get; set; } |
|||
|
|||
public string? Bank { get; set; } |
|||
|
|||
public string? Currency { get; set; } |
|||
public string? Country { get; set; } |
|||
|
|||
public decimal TaxRate { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public bool? IsActive { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
public string? Currency { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Fax { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public bool? IsActive { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Phone { get; set; } |
|||
|
|||
public string? PostId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string? ShortName { get; set; } |
|||
|
|||
public decimal TaxRate { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
} |
@ -1,43 +1,44 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataSupplierItem; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataSupplierItem |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataSupplierItem : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? SupplierSimpleName { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string SupplierItemCode { get; set; } = null!; |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? Version { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? SupplierPackUom { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public decimal SupplierPackQty { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public decimal QtyPerPallet { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string SupplierItemCode { get; set; } = null!; |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public decimal SupplierPackQty { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? SupplierPackUom { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? SupplierSimpleName { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Version { get; set; } |
|||
} |
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataSupplierTimeWindow; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataSupplierTimeWindow |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public string SupplierName { get; set; } = null!; |
|||
|
|||
public string TimeSlot { get; set; } = null!; |
|||
|
|||
public string Week { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataSupplierTimeWindow : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public string SupplierName { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string TimeSlot { get; set; } = null!; |
|||
|
|||
public string Week { get; set; } = null!; |
|||
} |
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataTeam; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataTeam |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataTeam : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? Members { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Members { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,59 +1,60 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataTransactionType; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataTransactionType |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string TransType { get; set; } = null!; |
|||
public class BasedataTransactionType : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public bool AutoAgreeRequest { get; set; } |
|||
|
|||
public string TransSubType { get; set; } = null!; |
|||
public bool AutoCompleteJob { get; set; } |
|||
|
|||
public string Description { get; set; } = null!; |
|||
public bool AutoHandleRequest { get; set; } |
|||
|
|||
public string? InLocationTypes { get; set; } |
|||
public bool AutoSubmitRequest { get; set; } |
|||
|
|||
public string? OutLocationTypes { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? InLocationAreas { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? OutLocationAreas { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ItemStatuses { get; set; } |
|||
public string Description { get; set; } = null!; |
|||
|
|||
public string? ItemTypes { get; set; } |
|||
public bool DirectCreateNote { get; set; } |
|||
|
|||
public string? InInventoryStatuses { get; set; } |
|||
public bool Enabled { get; set; } |
|||
|
|||
public string? OutInventoryStatuses { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public bool AutoSubmitRequest { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public bool AutoAgreeRequest { get; set; } |
|||
public string? InInventoryStatuses { get; set; } |
|||
|
|||
public bool AutoHandleRequest { get; set; } |
|||
public string? InLocationAreas { get; set; } |
|||
|
|||
public bool AutoCompleteJob { get; set; } |
|||
public string? InLocationTypes { get; set; } |
|||
|
|||
public bool DirectCreateNote { get; set; } |
|||
public string? ItemStatuses { get; set; } |
|||
|
|||
public bool Enabled { get; set; } |
|||
public string? ItemTypes { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? OutInventoryStatuses { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? OutLocationAreas { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? OutLocationTypes { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string TransSubType { get; set; } = null!; |
|||
|
|||
public string TransType { get; set; } = null!; |
|||
} |
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataUom; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataUom |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataUom : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
} |
@ -1,31 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataWarehouse; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataWarehouse |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataWarehouse : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,33 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataWorkGroup; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataWorkGroup |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataWorkGroup : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,31 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataWorkShop; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataWorkShop |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataWorkShop : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,39 +1,40 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.BasedataWorkStation; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class BasedataWorkStation |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class BasedataWorkStation : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string ProductionLineCode { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? RawLocationCode { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? ProductLocationCode { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string Name { get; set; } = null!; |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ProductionLineCode { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? ProductLocationCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? RawLocationCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Type { get; set; } |
|||
} |
@ -1,11 +1,8 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.EfdbContext; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class EfdbContext |
|||
public class EfdbContext : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Id { get; set; } = null!; |
|||
|
|||
public string Hash { get; set; } = null!; |
|||
|
|||
public string Id { get; set; } = null!; |
|||
} |
@ -1,47 +1,48 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.FileStorageDataImportTask; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class FileStorageDataImportTask |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class FileStorageDataImportTask : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public string ImportFileBlobName { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ImportReportBlobName { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public int ImportStatus { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string Function { get; set; } = null!; |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string ImportFileBlobName { get; set; } = null!; |
|||
|
|||
public string? ImportReportBlobName { get; set; } |
|||
|
|||
public int ImportStatus { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string Function { get; set; } = null!; |
|||
|
|||
public string Route { get; set; } = null!; |
|||
|
|||
public string? RequestParam { get; set; } |
|||
|
|||
public string? ReturnResult { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public string Route { get; set; } = null!; |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? Worker { get; set; } |
|||
} |
@ -1,31 +1,32 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.FileStorageFile; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class FileStorageFile |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string FileName { get; set; } = null!; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class FileStorageFile : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string BlobName { get; set; } = null!; |
|||
|
|||
public long ByteSize { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string FileName { get; set; } = null!; |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,83 +1,84 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryBalance; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryBalance |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? ItemName { get; set; } |
|||
public class InventoryBalance : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
public bool? IsActive { get; set; } |
|||
|
|||
public string? SerialNumber { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? LastCountLabel { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string? LastCountPlanNumber { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public DateTime LastCountTime { get; set; } |
|||
|
|||
public string LocationArea { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string LocationGroup { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public string? LastTransNumber { get; set; } |
|||
|
|||
public DateTime PutInTime { get; set; } |
|||
public string LastTransType { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string LocationArea { get; set; } = null!; |
|||
|
|||
public DateTime LastCountTime { get; set; } |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? LastCountPlanNumber { get; set; } |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string? LastCountLabel { get; set; } |
|||
public string LocationGroup { get; set; } = null!; |
|||
|
|||
public bool? IsActive { get; set; } |
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string ManageType { get; set; } = null!; |
|||
|
|||
public string LastTransType { get; set; } = null!; |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? LastTransNumber { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public DateTime PutInTime { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? SerialNumber { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,83 +1,84 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryBalanceCopy; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryBalanceCopy |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? ItemName { get; set; } |
|||
public class InventoryBalanceCopy : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
public bool? IsActive { get; set; } |
|||
|
|||
public string? SerialNumber { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? LastCountLabel { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string? LastCountPlanNumber { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public DateTime LastCountTime { get; set; } |
|||
|
|||
public string LocationArea { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string LocationGroup { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public string? LastTransNumber { get; set; } |
|||
|
|||
public DateTime PutInTime { get; set; } |
|||
public string LastTransType { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string LocationArea { get; set; } = null!; |
|||
|
|||
public DateTime LastCountTime { get; set; } |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? LastCountPlanNumber { get; set; } |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string? LastCountLabel { get; set; } |
|||
public string LocationGroup { get; set; } = null!; |
|||
|
|||
public bool? IsActive { get; set; } |
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string ManageType { get; set; } = null!; |
|||
|
|||
public string LastTransType { get; set; } = null!; |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? LastTransNumber { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public DateTime PutInTime { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? SerialNumber { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,49 +1,54 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryContainer; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class InventoryContainer |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string ContainerCode { get; set; } = null!; |
|||
using WinIn.FasterZ.Wms.Z_Business.InventoryContainerDetail; |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? Type { get; set; } |
|||
public class InventoryContainer : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string BusinessStatus { get; set; } = null!; |
|||
|
|||
public decimal Capacity { get; set; } |
|||
|
|||
public string? ProjectCode { get; set; } |
|||
|
|||
public string? SeqNo { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string BusinessStatus { get; set; } = null!; |
|||
public string ContainerCode { get; set; } = null!; |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public virtual ICollection<InventoryContainerDetail> InventoryContainerDetails { get; set; } = |
|||
new List<InventoryContainerDetail>(); |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? Number { get; set; } |
|||
|
|||
public string? ProjectCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public string? SeqNo { get; set; } |
|||
|
|||
public string? Number { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public virtual ICollection<InventoryContainerDetail> InventoryContainerDetails { get; set; } = new List<InventoryContainerDetail>(); |
|||
public string? Type { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
} |
@ -1,65 +1,68 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryContainerDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryContainerDetail |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.InventoryContainer; |
|||
|
|||
public class InventoryContainerDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string ContainerCode { get; set; } = null!; |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public virtual InventoryContainer Master { get; set; } = null!; |
|||
|
|||
public decimal Qty { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? Number { get; set; } |
|||
|
|||
public string? Year { get; set; } |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? ProductNo { get; set; } |
|||
public string? Position { get; set; } |
|||
|
|||
public string? ProjectCode { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? Position { get; set; } |
|||
public string? ProductNo { get; set; } |
|||
|
|||
public string? SeqNo { get; set; } |
|||
public string? ProjectCode { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? SeqNo { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Number { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public virtual InventoryContainer Master { get; set; } = null!; |
|||
public string? Year { get; set; } |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryErpBalance; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryErpBalance |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class InventoryErpBalance : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Lot { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Lot { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
} |
@ -1,67 +1,68 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryExpectIn; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryExpectIn |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class InventoryExpectIn : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? Lot { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? SerialNumber { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string JobNumber { get; set; } = null!; |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string JobNumber { get; set; } = null!; |
|||
public string LocationArea { get; set; } = null!; |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string LocationArea { get; set; } = null!; |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string LocationGroup { get; set; } = null!; |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string? Lot { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? SerialNumber { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,67 +1,68 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryExpectOut; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryExpectOut |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public class InventoryExpectOut : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? Lot { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? SerialNumber { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string JobNumber { get; set; } = null!; |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string LocationArea { get; set; } = null!; |
|||
|
|||
public string LocationGroup { get; set; } = null!; |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string JobNumber { get; set; } = null!; |
|||
public string LocationGroup { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string? Lot { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? SerialNumber { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,35 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryLocationCapacity; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryLocationCapacity |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public decimal UsedCapacity { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class InventoryLocationCapacity : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public decimal AvailableCapacity { get; set; } |
|||
|
|||
public decimal BearableOverloadCapacity { get; set; } |
|||
|
|||
public bool IsInfinity { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public bool IsInfinity { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public decimal UsedCapacity { get; set; } |
|||
} |
@ -1,71 +1,72 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventorySnapshot; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventorySnapshot |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime SnapshotDate { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public DateTime SnapshotTime { get; set; } |
|||
public class InventorySnapshot : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? Lot { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? SerialNumber { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string LocationArea { get; set; } = null!; |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string LocationArea { get; set; } = null!; |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string LocationGroup { get; set; } = null!; |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public string? Lot { get; set; } |
|||
|
|||
public DateTime PutInTime { get; set; } |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public DateTime PutInTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? SerialNumber { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public DateTime SnapshotDate { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public DateTime SnapshotTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,85 +1,86 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryTransaction; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryTransaction |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string TransNumber { get; set; } = null!; |
|||
|
|||
public string TransType { get; set; } = null!; |
|||
public class InventoryTransaction : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ActiveDate { get; set; } |
|||
|
|||
public string TransSubType { get; set; } = null!; |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string TransInOut { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? DocNumber { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? Lot { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string? JobNumber { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string LocationArea { get; set; } = null!; |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string LocationArea { get; set; } = null!; |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string LocationGroup { get; set; } = null!; |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public string? Lot { get; set; } |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string ManageType { get; set; } = null!; |
|||
|
|||
public DateTime ActiveDate { get; set; } |
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public DateTime TransTime { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? JobNumber { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? DocNumber { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string ManageType { get; set; } = null!; |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string TransInOut { get; set; } = null!; |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string TransNumber { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string TransSubType { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public DateTime TransTime { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string TransType { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string? Worker { get; set; } |
|||
} |
@ -1,103 +1,104 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.InventoryTransferLog; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class InventoryTransferLog |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string TransferNumber { get; set; } = null!; |
|||
|
|||
public string FromPackingCode { get; set; } = null!; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string ToPackingCode { get; set; } = null!; |
|||
public class InventoryTransferLog : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ActiveDate { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? DocNumber { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string FromTransNumber { get; set; } = null!; |
|||
public string? FromContainerCode { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string FromLocationArea { get; set; } = null!; |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public string FromLocationCode { get; set; } = null!; |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string FromLocationErpCode { get; set; } = null!; |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string FromLocationGroup { get; set; } = null!; |
|||
|
|||
public string? FromLot { get; set; } |
|||
|
|||
public string FromPackingCode { get; set; } = null!; |
|||
|
|||
public string FromStatus { get; set; } = null!; |
|||
|
|||
public string FromTransNumber { get; set; } = null!; |
|||
|
|||
public string FromWarehouseCode { get; set; } = null!; |
|||
|
|||
public string FromLocationCode { get; set; } = null!; |
|||
public Guid Id { get; set; } |
|||
|
|||
public string FromLocationArea { get; set; } = null!; |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string FromLocationGroup { get; set; } = null!; |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string FromLocationErpCode { get; set; } = null!; |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? FromContainerCode { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string ToTransNumber { get; set; } = null!; |
|||
public string? JobNumber { get; set; } |
|||
|
|||
public string? ToLot { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string ToStatus { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string ToWarehouseCode { get; set; } = null!; |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string ToLocationCode { get; set; } = null!; |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string ToLocationArea { get; set; } = null!; |
|||
public string? Remark { get; set; } |
|||
|
|||
public string ToLocationGroup { get; set; } = null!; |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string ToLocationErpCode { get; set; } = null!; |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? ToContainerCode { get; set; } |
|||
|
|||
public string TransType { get; set; } = null!; |
|||
public string ToLocationArea { get; set; } = null!; |
|||
|
|||
public string TransSubType { get; set; } = null!; |
|||
public string ToLocationCode { get; set; } = null!; |
|||
|
|||
public DateTime ActiveDate { get; set; } |
|||
public string ToLocationErpCode { get; set; } = null!; |
|||
|
|||
public DateTime TransferTime { get; set; } |
|||
public string ToLocationGroup { get; set; } = null!; |
|||
|
|||
public string? Worker { get; set; } |
|||
public string? ToLot { get; set; } |
|||
|
|||
public string? JobNumber { get; set; } |
|||
public string ToPackingCode { get; set; } = null!; |
|||
|
|||
public string? DocNumber { get; set; } |
|||
public string ToStatus { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public string ToTransNumber { get; set; } = null!; |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string ToWarehouseCode { get; set; } = null!; |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string TransferNumber { get; set; } = null!; |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public DateTime TransferTime { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string TransSubType { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string TransType { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Worker { get; set; } |
|||
} |
@ -1,71 +1,74 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobCheckJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobCheckJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Order { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? CustomerItemCode { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobCheckJob; |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public class JobCheckJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? CustomerItemCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? LocationArea { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public string? LocationGroup { get; set; } |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public virtual JobCheckJob Master { get; set; } = null!; |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? Order { get; set; } |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? LocationArea { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? LocationGroup { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public virtual JobCheckJob Master { get; set; } = null!; |
|||
public string Uom { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,75 +1,79 @@ |
|||
using System; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobCountJob; |
|||
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.JobCountJobDetail; |
|||
|
|||
public partial class JobCountJob |
|||
public class JobCountJob : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime? AcceptTime { get; set; } |
|||
|
|||
public string? CountPlanNumber { get; set; } |
|||
public Guid? AcceptUserId { get; set; } |
|||
|
|||
public string CountStage { get; set; } = null!; |
|||
public string? AcceptUserName { get; set; } |
|||
|
|||
public string CountMethod { get; set; } = null!; |
|||
public DateTime? CompleteTime { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
public Guid? CompleteUserId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public string? CompleteUserName { get; set; } |
|||
|
|||
public string? ItemCode { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? LocationCode { get; set; } |
|||
public string CountMethod { get; set; } = null!; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public string? CountPlanNumber { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string CountStage { get; set; } = null!; |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public bool? IsAutoComplete { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? ItemCode { get; set; } |
|||
|
|||
public string? UpStreamJobNumber { get; set; } |
|||
public virtual ICollection<JobCountJobDetail> JobCountJobDetails { get; set; } = new List<JobCountJobDetail>(); |
|||
|
|||
public string? JobDescription { get; set; } |
|||
|
|||
public string JobType { get; set; } = null!; |
|||
|
|||
public string JobStatus { get; set; } = null!; |
|||
|
|||
public int Priority { get; set; } |
|||
public string JobType { get; set; } = null!; |
|||
|
|||
public int PriorityIncrement { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public bool? IsAutoComplete { get; set; } |
|||
public string? LocationCode { get; set; } |
|||
|
|||
public Guid? AcceptUserId { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? AcceptUserName { get; set; } |
|||
public int Priority { get; set; } |
|||
|
|||
public DateTime? AcceptTime { get; set; } |
|||
public int PriorityIncrement { get; set; } |
|||
|
|||
public Guid? CompleteUserId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? CompleteUserName { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime? CompleteTime { get; set; } |
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string? UpStreamJobNumber { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
|
|||
public virtual ICollection<JobCountJobDetail> JobCountJobDetails { get; set; } = new List<JobCountJobDetail>(); |
|||
public string? Worker { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
} |
@ -1,79 +1,82 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobCountJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobCountJobDetail |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.JobCountJob; |
|||
|
|||
public class JobCountJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string CountLabel { get; set; } = null!; |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public decimal InventoryQty { get; set; } |
|||
public string? CountDescription { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public string CountLabel { get; set; } = null!; |
|||
|
|||
public string? InventoryLocationCode { get; set; } |
|||
public string? CountOperator { get; set; } |
|||
|
|||
public decimal CountQty { get; set; } |
|||
|
|||
public DateTime? CountTime { get; set; } |
|||
|
|||
public string? CountOperator { get; set; } |
|||
|
|||
public string? CountDescription { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? InventoryLocationCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public decimal InventoryQty { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string? LocationArea { get; set; } |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string? LocationGroup { get; set; } |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public virtual JobCountJob Master { get; set; } = null!; |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? LocationArea { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? LocationGroup { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
|
|||
public virtual JobCountJob Master { get; set; } = null!; |
|||
public string WarehouseCode { get; set; } = null!; |
|||
} |
@ -1,105 +1,108 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobDeliverJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobDeliverJobDetail |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.JobDeliverJob; |
|||
|
|||
public class JobDeliverJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ToLocationCode { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ToLocationArea { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public string? ToLocationGroup { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public string? ToLocationErpCode { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public string? ToWarehouseCode { get; set; } |
|||
public string? HandledFromLocationArea { get; set; } |
|||
|
|||
public string? OnTheWayLocationCode { get; set; } |
|||
public string? HandledFromLocationCode { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? HandledFromLocationGroup { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public virtual JobDeliverJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? OnTheWayLocationCode { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string? RecommendFromLocationArea { get; set; } |
|||
|
|||
public string? RecommendFromLocationCode { get; set; } |
|||
|
|||
public string? RecommendFromLocationArea { get; set; } |
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
|
|||
public string? RecommendFromLocationGroup { get; set; } |
|||
|
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
|
|||
public string? RecommendFromWarehouseCode { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? HandledFromLocationCode { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? HandledFromLocationArea { get; set; } |
|||
public string? ToLocationArea { get; set; } |
|||
|
|||
public string? HandledFromLocationGroup { get; set; } |
|||
public string? ToLocationCode { get; set; } |
|||
|
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
public string? ToLocationErpCode { get; set; } |
|||
|
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
public string? ToLocationGroup { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public string? ToWarehouseCode { get; set; } |
|||
|
|||
public virtual JobDeliverJob Master { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,101 +1,104 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobInspectJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobInspectJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? PoNumber { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobInspectJob; |
|||
|
|||
public string? PoLine { get; set; } |
|||
public class JobInspectJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? AbcClass { get; set; } |
|||
|
|||
public string InspectType { get; set; } = null!; |
|||
public string? Appearance { get; set; } |
|||
|
|||
public decimal SamplePercent { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public decimal ReceiveQty { get; set; } |
|||
public decimal CrackQty { get; set; } |
|||
|
|||
public decimal InspectQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public decimal GoodQty { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? FailedReason { get; set; } |
|||
public string DetailInspectStatus { get; set; } = null!; |
|||
|
|||
public decimal FailedQty { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public decimal CrackQty { get; set; } |
|||
public decimal FailedQty { get; set; } |
|||
|
|||
public string? InspectUser { get; set; } |
|||
public string? FailedReason { get; set; } |
|||
|
|||
public decimal NotPassedQty { get; set; } |
|||
public decimal GoodQty { get; set; } |
|||
|
|||
public string? AbcClass { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string DetailInspectStatus { get; set; } = null!; |
|||
public decimal InspectQty { get; set; } |
|||
|
|||
public string? Appearance { get; set; } |
|||
public string InspectType { get; set; } = null!; |
|||
|
|||
public string? Volume { get; set; } |
|||
public string? InspectUser { get; set; } |
|||
|
|||
public string? Weight { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? OtherPropertyJson { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? LocationArea { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
public string LocationErpCode { get; set; } = null!; |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? LocationGroup { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public virtual JobInspectJob Master { get; set; } = null!; |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public decimal NotPassedQty { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string? OtherPropertyJson { get; set; } |
|||
|
|||
public string PackingCode { get; set; } = null!; |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string? PoLine { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public decimal ReceiveQty { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? LocationArea { get; set; } |
|||
public decimal SamplePercent { get; set; } |
|||
|
|||
public string? LocationGroup { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string LocationErpCode { get; set; } = null!; |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
|
|||
public string? Volume { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public virtual JobInspectJob Master { get; set; } = null!; |
|||
public string? Weight { get; set; } |
|||
} |
@ -1,79 +1,82 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobInspectJobSummaryDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobInspectJobSummaryDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? PoLine { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobInspectJob; |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public class JobInspectJobSummaryDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? AbcClass { get; set; } |
|||
|
|||
public string InspectType { get; set; } = null!; |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public decimal SamplePercent { get; set; } |
|||
public decimal CrackQty { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public decimal ReceiveQty { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public decimal InspectQty { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public decimal GoodQty { get; set; } |
|||
public decimal FailedQty { get; set; } |
|||
|
|||
public string? FailedReason { get; set; } |
|||
|
|||
public decimal FailedQty { get; set; } |
|||
public decimal GoodQty { get; set; } |
|||
|
|||
public decimal CrackQty { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? InspectUser { get; set; } |
|||
public decimal InspectQty { get; set; } |
|||
|
|||
public decimal NotPassedQty { get; set; } |
|||
public string? InspectReport { get; set; } |
|||
|
|||
public string SummaryInspectStatus { get; set; } = null!; |
|||
public string InspectType { get; set; } = null!; |
|||
|
|||
public string? AbcClass { get; set; } |
|||
public string? InspectUser { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? Lot { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public virtual JobInspectJob Master { get; set; } = null!; |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public decimal NotPassedQty { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? InspectReport { get; set; } |
|||
public string? PoLine { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public decimal ReceiveQty { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public decimal SamplePercent { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string SummaryInspectStatus { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public virtual JobInspectJob Master { get; set; } = null!; |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
} |
@ -1,127 +1,130 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobIssueJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobIssueJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? RequestLocationCode { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobIssueJob; |
|||
|
|||
public string? ToLocationCode { get; set; } |
|||
public class JobIssueJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ToLocationArea { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ToLocationGroup { get; set; } |
|||
public decimal DeliveryQty { get; set; } |
|||
|
|||
public string? ToLocationErpCode { get; set; } |
|||
public string DistributionType { get; set; } = null!; |
|||
|
|||
public string? ToWarehouseCode { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
|
|||
public string? OnTheWayLocationCode { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public string? ProdLine { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public string? WorkStation { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public DateTime ExpiredTime { get; set; } |
|||
public string? HandledFromLocationArea { get; set; } |
|||
|
|||
public string? Operation { get; set; } |
|||
public string? HandledFromLocationCode { get; set; } |
|||
|
|||
public string DistributionType { get; set; } = null!; |
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
|
|||
public string TruncType { get; set; } = null!; |
|||
public string? HandledFromLocationGroup { get; set; } |
|||
|
|||
public decimal RoundedQty { get; set; } |
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
|
|||
public string PlannedSplitRule { get; set; } = null!; |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public DateTime PlanBeginTime { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public decimal DeliveryQty { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public virtual JobIssueJob Master { get; set; } = null!; |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? OnTheWayLocationCode { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? Operation { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public DateTime PlanBeginTime { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public string PlannedSplitRule { get; set; } = null!; |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public string? ProdLine { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string? RecommendFromLocationArea { get; set; } |
|||
|
|||
public string? RecommendFromLocationCode { get; set; } |
|||
|
|||
public string? RecommendFromLocationArea { get; set; } |
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
|
|||
public string? RecommendFromLocationGroup { get; set; } |
|||
|
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
|
|||
public string? RecommendFromWarehouseCode { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RequestLocationCode { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public decimal RoundedQty { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? HandledFromLocationCode { get; set; } |
|||
public string? ToLocationArea { get; set; } |
|||
|
|||
public string? HandledFromLocationArea { get; set; } |
|||
public string? ToLocationCode { get; set; } |
|||
|
|||
public string? HandledFromLocationGroup { get; set; } |
|||
public string? ToLocationErpCode { get; set; } |
|||
|
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
public string? ToLocationGroup { get; set; } |
|||
|
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
public string? ToWarehouseCode { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public string TruncType { get; set; } = null!; |
|||
|
|||
public virtual JobIssueJob Master { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
|
|||
public string? WorkStation { get; set; } |
|||
} |
@ -1,79 +1,84 @@ |
|||
using System; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobJisDeliverJob; |
|||
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public partial class JobJisDeliverJob |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobJisDeliverJobDetail; |
|||
|
|||
public string? Customer { get; set; } |
|||
public class JobJisDeliverJob : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime? AcceptTime { get; set; } |
|||
|
|||
public string? CustomerAddressCode { get; set; } |
|||
public Guid? AcceptUserId { get; set; } |
|||
|
|||
public string? CustomerLocationCode { get; set; } |
|||
public string? AcceptUserName { get; set; } |
|||
|
|||
public string? CustomerWarehouseCode { get; set; } |
|||
public DateTime? CompleteTime { get; set; } |
|||
|
|||
public string? ProjectCode { get; set; } |
|||
public Guid? CompleteUserId { get; set; } |
|||
|
|||
public string? Position { get; set; } |
|||
public string? CompleteUserName { get; set; } |
|||
|
|||
public DateTime PlanTime { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public decimal ContainerQty { get; set; } |
|||
|
|||
public decimal ItemQty { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? Customer { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? CustomerAddressCode { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? CustomerLocationCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? CustomerWarehouseCode { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? UpStreamJobNumber { get; set; } |
|||
public bool? IsAutoComplete { get; set; } |
|||
|
|||
public decimal ItemQty { get; set; } |
|||
|
|||
public string? JobDescription { get; set; } |
|||
|
|||
public string JobType { get; set; } = null!; |
|||
public virtual ICollection<JobJisDeliverJobDetail> JobJisDeliverJobDetails { get; set; } = |
|||
new List<JobJisDeliverJobDetail>(); |
|||
|
|||
public string JobStatus { get; set; } = null!; |
|||
|
|||
public int Priority { get; set; } |
|||
public string JobType { get; set; } = null!; |
|||
|
|||
public int PriorityIncrement { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public bool? IsAutoComplete { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public Guid? AcceptUserId { get; set; } |
|||
public DateTime PlanTime { get; set; } |
|||
|
|||
public string? AcceptUserName { get; set; } |
|||
public string? Position { get; set; } |
|||
|
|||
public DateTime? AcceptTime { get; set; } |
|||
public int Priority { get; set; } |
|||
|
|||
public Guid? CompleteUserId { get; set; } |
|||
public int PriorityIncrement { get; set; } |
|||
|
|||
public string? CompleteUserName { get; set; } |
|||
public string? ProjectCode { get; set; } |
|||
|
|||
public DateTime? CompleteTime { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? UpStreamJobNumber { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
|
|||
public virtual ICollection<JobJisDeliverJobDetail> JobJisDeliverJobDetails { get; set; } = new List<JobJisDeliverJobDetail>(); |
|||
public string? Worker { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
} |
@ -1,57 +1,60 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobJisDeliverJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobJisDeliverJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobJisDeliverJob; |
|||
|
|||
public string? ContainerName { get; set; } |
|||
public class JobJisDeliverJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string? ContainerDesc { get; set; } |
|||
|
|||
public decimal ItemQty { get; set; } |
|||
public string? ContainerName { get; set; } |
|||
|
|||
public string? FromLocationCode { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? FromLocationArea { get; set; } |
|||
|
|||
public string? FromLocationGroup { get; set; } |
|||
public string? FromLocationCode { get; set; } |
|||
|
|||
public string? FromLocationErpCode { get; set; } |
|||
|
|||
public string? FromLocationGroup { get; set; } |
|||
|
|||
public string? FromWarehouseCode { get; set; } |
|||
|
|||
public string? ToLocationCode { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? ToLocationArea { get; set; } |
|||
public decimal ItemQty { get; set; } |
|||
|
|||
public string? ToLocationGroup { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ToLocationErpCode { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ToWarehouseCode { get; set; } |
|||
public virtual JobJisDeliverJob Master { get; set; } = null!; |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Number { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? ToLocationArea { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? ToLocationCode { get; set; } |
|||
|
|||
public string? Number { get; set; } |
|||
public string? ToLocationErpCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? ToLocationGroup { get; set; } |
|||
|
|||
public virtual JobJisDeliverJob Master { get; set; } = null!; |
|||
public string? ToWarehouseCode { get; set; } |
|||
} |
@ -1,97 +1,100 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobProductReceiveJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobProductReceiveJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ProdLine { get; set; } = null!; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? RawLocationCode { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobProductReceiveJob; |
|||
|
|||
public class JobProductReceiveJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? HandledToLocationArea { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? HandledToLocationCode { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? HandledToLocationErpCode { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? HandledToLocationGroup { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public string? HandledToWarehouseCode { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? RecommendToLocationCode { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendToLocationArea { get; set; } |
|||
public virtual JobProductReceiveJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationGroup { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
public string ProdLine { get; set; } = null!; |
|||
|
|||
public string? Uom { get; set; } |
|||
public string? RawLocationCode { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? HandledToLocationCode { get; set; } |
|||
public string? RecommendToLocationArea { get; set; } |
|||
|
|||
public string? HandledToLocationArea { get; set; } |
|||
public string? RecommendToLocationCode { get; set; } |
|||
|
|||
public string? HandledToLocationGroup { get; set; } |
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
|
|||
public string? HandledToLocationErpCode { get; set; } |
|||
public string? RecommendToLocationGroup { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public virtual JobProductReceiveJob Master { get; set; } = null!; |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
} |
@ -1,63 +1,68 @@ |
|||
using System; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobProductionReturnJob; |
|||
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public partial class JobProductionReturnJob |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobProductionReturnJobDetail; |
|||
|
|||
public string? ProductionReturnRequestNumber { get; set; } |
|||
public class JobProductionReturnJob : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime? AcceptTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid? AcceptUserId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? AcceptUserName { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public DateTime? CompleteTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid? CompleteUserId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? CompleteUserName { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? UpStreamJobNumber { get; set; } |
|||
public bool? IsAutoComplete { get; set; } |
|||
|
|||
public string? JobDescription { get; set; } |
|||
|
|||
public string JobType { get; set; } = null!; |
|||
public virtual ICollection<JobProductionReturnJobDetail> JobProductionReturnJobDetails { get; set; } = |
|||
new List<JobProductionReturnJobDetail>(); |
|||
|
|||
public string JobStatus { get; set; } = null!; |
|||
|
|||
public int Priority { get; set; } |
|||
public string JobType { get; set; } = null!; |
|||
|
|||
public int PriorityIncrement { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public bool? IsAutoComplete { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public Guid? AcceptUserId { get; set; } |
|||
public int Priority { get; set; } |
|||
|
|||
public string? AcceptUserName { get; set; } |
|||
public int PriorityIncrement { get; set; } |
|||
|
|||
public DateTime? AcceptTime { get; set; } |
|||
public string? ProductionReturnRequestNumber { get; set; } |
|||
|
|||
public Guid? CompleteUserId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? CompleteUserName { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime? CompleteTime { get; set; } |
|||
public string? UpStreamJobNumber { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
|
|||
public virtual ICollection<JobProductionReturnJobDetail> JobProductionReturnJobDetails { get; set; } = new List<JobProductionReturnJobDetail>(); |
|||
public string? Worker { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
} |
@ -1,103 +1,106 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobProductionReturnJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobProductionReturnJobDetail |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.JobProductionReturnJob; |
|||
|
|||
public class JobProductionReturnJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? FromLocationCode { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? FromLocationArea { get; set; } |
|||
|
|||
public string? FromLocationGroup { get; set; } |
|||
public string? FromLocationCode { get; set; } |
|||
|
|||
public string? FromLocationErpCode { get; set; } |
|||
|
|||
public string? FromWarehouseCode { get; set; } |
|||
public string? FromLocationGroup { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? FromWarehouseCode { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? HandledToLocationArea { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? HandledToLocationCode { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? HandledToLocationErpCode { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? HandledToLocationGroup { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? HandledToWarehouseCode { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendToLocationCode { get; set; } |
|||
public virtual JobProductionReturnJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationArea { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendToLocationGroup { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendToLocationArea { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendToLocationCode { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
|
|||
public string? HandledToLocationCode { get; set; } |
|||
public string? RecommendToLocationGroup { get; set; } |
|||
|
|||
public string? HandledToLocationArea { get; set; } |
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
|
|||
public string? HandledToLocationGroup { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? HandledToLocationErpCode { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public virtual JobProductionReturnJob Master { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,83 +1,90 @@ |
|||
using System; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJob; |
|||
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJobDetail; |
|||
using WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJobDetailCopy; |
|||
|
|||
public partial class JobPurchaseReceiptJob |
|||
public class JobPurchaseReceiptJob : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime? AcceptTime { get; set; } |
|||
|
|||
public string? PurchaseReceiptRequestNumber { get; set; } |
|||
public Guid? AcceptUserId { get; set; } |
|||
|
|||
public string? AsnNumber { get; set; } |
|||
public string? AcceptUserName { get; set; } |
|||
|
|||
public string? RpNumber { get; set; } |
|||
public string? AsnNumber { get; set; } |
|||
|
|||
public string? PoNumber { get; set; } |
|||
public DateTime? CompleteTime { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
public Guid? CompleteUserId { get; set; } |
|||
|
|||
public string? SupplierName { get; set; } |
|||
public string? CompleteUserName { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? TimeWindow { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public DateTime PlanArriveDate { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public bool? IsAutoComplete { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? JobDescription { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public virtual ICollection<JobPurchaseReceiptJobDetailCopy> JobPurchaseReceiptJobDetailCopies { get; set; } = |
|||
new List<JobPurchaseReceiptJobDetailCopy>(); |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public virtual ICollection<JobPurchaseReceiptJobDetail> JobPurchaseReceiptJobDetails { get; set; } = |
|||
new List<JobPurchaseReceiptJobDetail>(); |
|||
|
|||
public string? Remark { get; set; } |
|||
public string JobStatus { get; set; } = null!; |
|||
|
|||
public string? Worker { get; set; } |
|||
public string JobType { get; set; } = null!; |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? UpStreamJobNumber { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? JobDescription { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string JobType { get; set; } = null!; |
|||
public DateTime PlanArriveDate { get; set; } |
|||
|
|||
public string JobStatus { get; set; } = null!; |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public int Priority { get; set; } |
|||
|
|||
public int PriorityIncrement { get; set; } |
|||
|
|||
public string? WorkGroupCode { get; set; } |
|||
public string? PurchaseReceiptRequestNumber { get; set; } |
|||
|
|||
public bool? IsAutoComplete { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? AcceptUserId { get; set; } |
|||
public string? RpNumber { get; set; } |
|||
|
|||
public string? AcceptUserName { get; set; } |
|||
public string? SupplierAddress { get; set; } |
|||
|
|||
public DateTime? AcceptTime { get; set; } |
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public Guid? CompleteUserId { get; set; } |
|||
public string? SupplierName { get; set; } |
|||
|
|||
public string? CompleteUserName { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime? CompleteTime { get; set; } |
|||
public string? TimeWindow { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string? SupplierAddress { get; set; } |
|||
public string? UpStreamJobNumber { get; set; } |
|||
|
|||
public virtual ICollection<JobPurchaseReceiptJobDetailCopy> JobPurchaseReceiptJobDetailCopies { get; set; } = new List<JobPurchaseReceiptJobDetailCopy>(); |
|||
public string? WarehouseCode { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
|
|||
public virtual ICollection<JobPurchaseReceiptJobDetail> JobPurchaseReceiptJobDetails { get; set; } = new List<JobPurchaseReceiptJobDetail>(); |
|||
public string? WorkGroupCode { get; set; } |
|||
} |
@ -1,111 +1,114 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobPurchaseReceiptJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? PoLine { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJob; |
|||
|
|||
public class JobPurchaseReceiptJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string PurchaseReceiptInspectStatus { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? InspectPhotoJson { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? FailedReason { get; set; } |
|||
|
|||
public string? MassDefect { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public string? SupplierPackUom { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public decimal SupplierPackQty { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? HandledToLocationArea { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledToLocationCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledToLocationErpCode { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? HandledToLocationGroup { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public string? InspectPhotoJson { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public string? MassDefect { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public virtual JobPurchaseReceiptJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? PoLine { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string PurchaseReceiptInspectStatus { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? RecommendToLocationArea { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public string? RecommendToLocationGroup { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RecommendToLocationArea { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public string? RecommendToLocationCode { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendToLocationGroup { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
|
|||
public string? HandledToLocationCode { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? HandledToLocationArea { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? HandledToLocationGroup { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? HandledToLocationErpCode { get; set; } |
|||
public decimal SupplierPackQty { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
public string? SupplierPackUom { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public virtual JobPurchaseReceiptJob Master { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,111 +1,114 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJobDetailCopy; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobPurchaseReceiptJobDetailCopy |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? PoLine { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobPurchaseReceiptJob; |
|||
|
|||
public class JobPurchaseReceiptJobDetailCopy : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string PurchaseReceiptInspectStatus { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? InspectPhotoJson { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? FailedReason { get; set; } |
|||
|
|||
public string? MassDefect { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public string? SupplierPackUom { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public decimal SupplierPackQty { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? HandledToLocationArea { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledToLocationCode { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledToLocationErpCode { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? HandledToLocationGroup { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public string? InspectPhotoJson { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? ItemName { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public string? MassDefect { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public virtual JobPurchaseReceiptJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? PoLine { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string PurchaseReceiptInspectStatus { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? RecommendToLocationArea { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public string? RecommendToLocationGroup { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RecommendToLocationArea { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public string? RecommendToLocationCode { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendToLocationGroup { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
|
|||
public string? HandledToLocationCode { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? HandledToLocationArea { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? HandledToLocationGroup { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? HandledToLocationErpCode { get; set; } |
|||
public decimal SupplierPackQty { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
public string? SupplierPackUom { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public virtual JobPurchaseReceiptJob Master { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,99 +1,102 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobPurchaseReturnJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobPurchaseReturnJobDetail |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
using WinIn.FasterZ.Wms.Z_Business.JobPurchaseReturnJob; |
|||
|
|||
public class JobPurchaseReturnJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? PoNumber { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? PoLine { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public string? Reason { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? HandledFromLocationArea { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? HandledFromLocationCode { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledFromLocationGroup { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public Guid Id { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public virtual JobPurchaseReturnJob Master { get; set; } = null!; |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? RecommendFromLocationCode { get; set; } |
|||
public string? PoLine { get; set; } |
|||
|
|||
public string? RecommendFromLocationArea { get; set; } |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? RecommendFromLocationGroup { get; set; } |
|||
public string? Reason { get; set; } |
|||
|
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? RecommendFromWarehouseCode { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public string? RecommendFromLocationArea { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? RecommendFromLocationCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RecommendFromLocationGroup { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public string? RecommendFromWarehouseCode { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public string? HandledFromLocationCode { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? HandledFromLocationArea { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? HandledFromLocationGroup { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public virtual JobPurchaseReturnJob Master { get; set; } = null!; |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,109 +1,112 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobPutawayJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobPutawayJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? PoNumber { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobPutawayJob; |
|||
|
|||
public string? PoLine { get; set; } |
|||
public class JobPutawayJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? FromLocationCode { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? FromLocationArea { get; set; } |
|||
|
|||
public string? FromLocationGroup { get; set; } |
|||
public string? FromLocationCode { get; set; } |
|||
|
|||
public string? FromLocationErpCode { get; set; } |
|||
|
|||
public string? FromLocationGroup { get; set; } |
|||
|
|||
public string? FromWarehouseCode { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledToLocationArea { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? HandledToLocationCode { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? HandledToLocationErpCode { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? HandledToLocationGroup { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? HandledToWarehouseCode { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public virtual JobPutawayJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendToLocationCode { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationArea { get; set; } |
|||
public string? PoLine { get; set; } |
|||
|
|||
public string? RecommendToLocationGroup { get; set; } |
|||
public string? PoNumber { get; set; } |
|||
|
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendToLocationArea { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public string? RecommendToLocationCode { get; set; } |
|||
|
|||
public string? HandledToLocationCode { get; set; } |
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
|
|||
public string? HandledToLocationArea { get; set; } |
|||
public string? RecommendToLocationGroup { get; set; } |
|||
|
|||
public string? HandledToLocationGroup { get; set; } |
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
|
|||
public string? HandledToLocationErpCode { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public virtual JobPutawayJob Master { get; set; } = null!; |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Uom { get; set; } = null!; |
|||
} |
@ -1,103 +1,106 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobUnplannedIssueJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobUnplannedIssueJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? ReasonCode { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobUnplannedIssueJob; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public class JobUnplannedIssueJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? CaseCode { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledFromLocationArea { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledFromLocationCode { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? HandledFromLocationGroup { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? RecommendFromLocationCode { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? RecommendFromLocationArea { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendFromLocationGroup { get; set; } |
|||
public virtual JobUnplannedIssueJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendFromWarehouseCode { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? Uom { get; set; } |
|||
public string? OnceBusiCode { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public string? ProjCapacityCode { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? ReasonCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendFromLocationArea { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendFromLocationCode { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public string? RecommendFromLocationErpCode { get; set; } |
|||
|
|||
public string? HandledFromLocationCode { get; set; } |
|||
public string? RecommendFromLocationGroup { get; set; } |
|||
|
|||
public string? HandledFromLocationArea { get; set; } |
|||
public string? RecommendFromWarehouseCode { get; set; } |
|||
|
|||
public string? HandledFromLocationGroup { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public string? HandledFromLocationErpCode { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? HandledFromWarehouseCode { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? CaseCode { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? ProjCapacityCode { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? OnceBusiCode { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public virtual JobUnplannedIssueJob Master { get; set; } = null!; |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
} |
@ -1,103 +1,106 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.JobUnplannedReceiptJobDetail; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class JobUnplannedReceiptJobDetail |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string? ReasonCode { get; set; } |
|||
using WinIn.FasterZ.Wms.Z_Business.JobUnplannedReceiptJob; |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public class JobUnplannedReceiptJobDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? CaseCode { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public DateTime HandledArriveDate { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public string? HandledContainerCode { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public DateTime HandledExpireDate { get; set; } |
|||
|
|||
public string Number { get; set; } = null!; |
|||
public string? HandledLot { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? HandledPackingCode { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public DateTime HandledProduceDate { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public decimal HandledQty { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? HandledSupplierBatch { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string? HandledToLocationArea { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? HandledToLocationCode { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
public string? HandledToLocationErpCode { get; set; } |
|||
|
|||
public string? RecommendContainerCode { get; set; } |
|||
public string? HandledToLocationGroup { get; set; } |
|||
|
|||
public string? RecommendPackingCode { get; set; } |
|||
public string? HandledToWarehouseCode { get; set; } |
|||
|
|||
public string? RecommendSupplierBatch { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime RecommendArriveDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime RecommendProduceDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime RecommendExpireDate { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? RecommendLot { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? RecommendToLocationCode { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? RecommendToLocationArea { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? RecommendToLocationGroup { get; set; } |
|||
public virtual JobUnplannedReceiptJob Master { get; set; } = null!; |
|||
|
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
public string Number { get; set; } = null!; |
|||
|
|||
public string? Uom { get; set; } |
|||
public string? OnceBusiCode { get; set; } |
|||
|
|||
public decimal RecommendQty { get; set; } |
|||
public string? ProjCapacityCode { get; set; } |
|||
|
|||
public string? HandledContainerCode { get; set; } |
|||
public string? ReasonCode { get; set; } |
|||
|
|||
public string? HandledPackingCode { get; set; } |
|||
public DateTime RecommendArriveDate { get; set; } |
|||
|
|||
public string? HandledSupplierBatch { get; set; } |
|||
public string? RecommendContainerCode { get; set; } |
|||
|
|||
public DateTime HandledArriveDate { get; set; } |
|||
public DateTime RecommendExpireDate { get; set; } |
|||
|
|||
public DateTime HandledProduceDate { get; set; } |
|||
public string? RecommendLot { get; set; } |
|||
|
|||
public DateTime HandledExpireDate { get; set; } |
|||
public string? RecommendPackingCode { get; set; } |
|||
|
|||
public string? HandledLot { get; set; } |
|||
public DateTime RecommendProduceDate { get; set; } |
|||
|
|||
public string? HandledToLocationCode { get; set; } |
|||
public decimal RecommendQty { get; set; } |
|||
|
|||
public string? HandledToLocationArea { get; set; } |
|||
public string? RecommendSupplierBatch { get; set; } |
|||
|
|||
public string? HandledToLocationGroup { get; set; } |
|||
public string? RecommendToLocationArea { get; set; } |
|||
|
|||
public string? HandledToLocationErpCode { get; set; } |
|||
public string? RecommendToLocationCode { get; set; } |
|||
|
|||
public string? HandledToWarehouseCode { get; set; } |
|||
public string? RecommendToLocationErpCode { get; set; } |
|||
|
|||
public decimal HandledQty { get; set; } |
|||
public string? RecommendToLocationGroup { get; set; } |
|||
|
|||
public string? CaseCode { get; set; } |
|||
public string? RecommendToWarehouseCode { get; set; } |
|||
|
|||
public string? ProjCapacityCode { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? OnceBusiCode { get; set; } |
|||
public string Status { get; set; } = null!; |
|||
|
|||
public virtual JobUnplannedReceiptJob Master { get; set; } = null!; |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
} |
@ -1,29 +1,30 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelCountLabel; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelCountLabel |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string RuleCode { get; set; } = null!; |
|||
public class LabelCountLabel : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public int CountNumber { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string RuleCode { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,93 +1,94 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelInventoryLabel; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelInventoryLabel |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class LabelInventoryLabel : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string LabelType { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? FullBarcodeString { get; set; } |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
public string? FullBarcodeString { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public string LabelStatus { get; set; } = null!; |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string LabelType { get; set; } = null!; |
|||
|
|||
public string LabelStatus { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? RecommendLocationCode { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? LocationErpCode { get; set; } |
|||
|
|||
public string? ContainerCode { get; set; } |
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string? QualityInfoQlevel { get; set; } |
|||
public DateTime? PlanArriveDate { get; set; } |
|||
|
|||
public string? QualityInfoQualityFile { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? PurchaseInfoSupplierCode { get; set; } |
|||
public string? ProductionInfoProdLine { get; set; } |
|||
|
|||
public string? PurchaseInfoPoNumber { get; set; } |
|||
public string? ProductionInfoShift { get; set; } |
|||
|
|||
public string? PurchaseInfoRpNumber { get; set; } |
|||
public string? ProductionInfoTeam { get; set; } |
|||
|
|||
public string? PurchaseInfoAsnNumber { get; set; } |
|||
|
|||
public string? ProductionInfoProdLine { get; set; } |
|||
public string? PurchaseInfoPoNumber { get; set; } |
|||
|
|||
public string? ProductionInfoTeam { get; set; } |
|||
public string? PurchaseInfoRpNumber { get; set; } |
|||
|
|||
public string? ProductionInfoShift { get; set; } |
|||
public string? PurchaseInfoSupplierCode { get; set; } |
|||
|
|||
public string? Specifications { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? SupplierName { get; set; } |
|||
public string? QualityInfoQlevel { get; set; } |
|||
|
|||
public string? SupplierSimpleName { get; set; } |
|||
public string? QualityInfoQualityFile { get; set; } |
|||
|
|||
public string? SupplierItemCode { get; set; } |
|||
public string? RecommendLocationCode { get; set; } |
|||
|
|||
public string? SupplierItemName { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public string? Specifications { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? SupplierItemCode { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? SupplierItemName { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public string? SupplierName { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? SupplierSimpleName { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime? PlanArriveDate { get; set; } |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelLabelDefinition; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelLabelDefinition |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class LabelLabelDefinition : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Prefix { get; set; } |
|||
public string? Description { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? Format { get; set; } |
|||
|
|||
public int SerialLength { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Separator { get; set; } |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? Prefix { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? Separator { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public int SerialLength { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Type { get; set; } |
|||
} |
@ -1,29 +1,30 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelPalletCode; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelPalletCode |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string RuleCode { get; set; } = null!; |
|||
|
|||
public int PalletlNumber { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class LabelPalletCode : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public int PalletlNumber { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string RuleCode { get; set; } = null!; |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,41 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelPalletLabel; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelPalletLabel |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class LabelPalletLabel : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string LabelType { get; set; } = null!; |
|||
|
|||
public string LabelStatus { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public bool HasItem { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? Desc1 { get; set; } |
|||
|
|||
public string? Desc2 { get; set; } |
|||
|
|||
public Guid ParentId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public bool HasItem { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string LabelStatus { get; set; } = null!; |
|||
|
|||
public string LabelType { get; set; } = null!; |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string? Name { get; set; } |
|||
|
|||
public Guid ParentId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,67 +1,68 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelSaleLabel; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelSaleLabel |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class LabelSaleLabel : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string LabelType { get; set; } = null!; |
|||
|
|||
public string FullBarcodeString { get; set; } = null!; |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
public string ContainerCode { get; set; } = null!; |
|||
|
|||
public string? ItemName { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string DocumentCode { get; set; } = null!; |
|||
|
|||
public string Lot { get; set; } = null!; |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public DateTime ArriveDate { get; set; } |
|||
public string FullBarcodeString { get; set; } = null!; |
|||
|
|||
public DateTime ProduceDate { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime ExpireDate { get; set; } |
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? Uom { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string LabelStatus { get; set; } = null!; |
|||
|
|||
public string DocumentCode { get; set; } = null!; |
|||
public string LabelType { get; set; } = null!; |
|||
|
|||
public string ContainerCode { get; set; } = null!; |
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public string? SaleInfoSaleInfoName { get; set; } |
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public string? QualityInfoQlevel { get; set; } |
|||
public string Lot { get; set; } = null!; |
|||
|
|||
public string? QualityInfoQualityFile { get; set; } |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
public string? QualityInfoQlevel { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
public string? QualityInfoQualityFile { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
public string? SaleInfoSaleInfoName { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Uom { get; set; } |
|||
} |
@ -1,29 +1,30 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.LabelSerialCode; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class LabelSerialCode |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string RuleCode { get; set; } = null!; |
|||
|
|||
public int SerialNumber { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public class LabelSerialCode : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string RuleCode { get; set; } = null!; |
|||
|
|||
public int SerialNumber { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
} |
@ -1,37 +1,38 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
namespace WinIn.FasterZ.Wms.Z_Business.MessageAnnouncement; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
using System; |
|||
|
|||
public partial class MessageAnnouncement |
|||
{ |
|||
public Guid Id { get; set; } |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
public string Title { get; set; } = null!; |
|||
public class MessageAnnouncement : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public DateTime ActiveTime { get; set; } |
|||
|
|||
public string Brief { get; set; } = null!; |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public string? Content { get; set; } |
|||
|
|||
public string MessageLevel { get; set; } = null!; |
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public DateTime ActiveTime { get; set; } |
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime ExpireTime { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
public Guid Id { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
public string MessageLevel { get; set; } = null!; |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string Title { get; set; } = null!; |
|||
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue