You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
namespace WinIn.FasterZ.Wms.Z_Business.JobUnplannedIssueJob;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
using WinIn.FasterZ.Wms.Z_Business.JobUnplannedIssueJobDetail;
|
|
|
|
public class JobUnplannedIssueJob : AuditedAggregateRoot<Guid>
|
|
{
|
|
public DateTime? AcceptTime { get; set; }
|
|
|
|
public Guid? AcceptUserId { get; set; }
|
|
|
|
public string? AcceptUserName { get; set; }
|
|
|
|
public DateTime BuildDate { get; set; }
|
|
|
|
public DateTime? CompleteTime { get; set; }
|
|
|
|
public Guid? CompleteUserId { get; set; }
|
|
|
|
public string? CompleteUserName { get; set; }
|
|
|
|
public string? DeptCode { get; set; }
|
|
|
|
public string? DeptName { get; set; }
|
|
|
|
public bool? IsAutoComplete { get; set; }
|
|
|
|
public string? JobDescription { get; set; }
|
|
|
|
public string JobStatus { get; set; } = null!;
|
|
|
|
public string JobType { get; set; } = null!;
|
|
|
|
public virtual ICollection<JobUnplannedIssueJobDetail> JobUnplannedIssueJobDetails { get; set; } =
|
|
new List<JobUnplannedIssueJobDetail>();
|
|
|
|
public string Number { get; set; } = null!;
|
|
|
|
public int Priority { get; set; }
|
|
|
|
public int PriorityIncrement { get; set; }
|
|
|
|
public string? Remark { get; set; }
|
|
|
|
public string? UnplannedIssueRequestNumber { get; set; }
|
|
|
|
public string? UpStreamJobNumber { get; set; }
|
|
|
|
public string? WarehouseCode { get; set; }
|
|
|
|
public string? Worker { get; set; }
|
|
|
|
public string? WorkGroupCode { get; set; }
|
|
}
|